1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-07-29 17:50:09 +02:00

style fixes

This commit is contained in:
Kushagra Gour
2018-07-31 22:29:07 +05:30
parent 72b2dcca21
commit 59a669b956
2 changed files with 8 additions and 6 deletions

View File

@@ -61,8 +61,8 @@ export default class AddLibrary extends Component {
<div> <div>
<h1>Add Library</h1> <h1>Add Library</h1>
<div class="flex"> <div class="flex flex-v-center">
<svg style="width: 30px; height: 30px;fill:rgb(255,255,255,0.2)"> <svg style="width: 30px; height: 30px;fill:rgb(255,255,255,0.5)">
<use xlinkHref="#search" /> <use xlinkHref="#search" />
</svg> </svg>
<LibraryAutoSuggest <LibraryAutoSuggest

View File

@@ -5,6 +5,7 @@
--code-font-size: 16px; --code-font-size: 16px;
--color-button: #d3a447; --color-button: #d3a447;
--color-focus-outline: #d3a447; --color-focus-outline: #d3a447;
--color-form-control-bg: #2c214b;
} }
body { body {
@@ -30,7 +31,7 @@ input,
textarea { textarea {
font-size: inherit; font-size: inherit;
color: var(--color-text); color: var(--color-text);
background: rgba(0, 0, 0, 0.24); background: var(--color-form-control-bg);
border: 1px solid rgba(255, 255, 255, 0.09); border: 1px solid rgba(255, 255, 255, 0.09);
border-bottom-color: rgba(255, 255, 255, 0.17); border-bottom-color: rgba(255, 255, 255, 0.17);
box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2); box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
@@ -1040,10 +1041,10 @@ body > #demo-frame {
.saved-item-tile__btn { .saved-item-tile__btn {
padding: 7px 10px; padding: 7px 10px;
color: rgba(255, 255, 255, 0.3); color: white;
border-radius: 20px; border-radius: 20px;
margin-left: 2px; margin-left: 2px;
background: rgba(255, 255, 255, 0.05); background: rgba(255, 255, 255, 0.1);
text-transform: uppercase; text-transform: uppercase;
} }
@@ -1066,7 +1067,8 @@ body > #demo-frame {
} }
.saved-items-pane__container { .saved-items-pane__container {
overflow-y: scroll; overflow-y: auto;
overflow-x: hidden;
max-height: calc(100vh - 90px); max-height: calc(100vh - 90px);
} }