1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-08-03 11:57:34 +02:00

style fixes

This commit is contained in:
Kushagra Gour
2018-07-30 23:33:36 +05:30
parent d24d00df9e
commit 55847a21ad
3 changed files with 5 additions and 6 deletions

View File

@@ -123,7 +123,6 @@ export default class AddLibrary extends Component {
id="externalJsTextarea" id="externalJsTextarea"
cols="30" cols="30"
rows="5" rows="5"
placeholder="Put each library in new line"
value={this.state.js} value={this.state.js}
/> />
@@ -136,7 +135,6 @@ export default class AddLibrary extends Component {
id="externalCssTextarea" id="externalCssTextarea"
cols="30" cols="30"
rows="5" rows="5"
placeholder="Put each library in new line"
value={this.state.css} value={this.state.css}
/> />
</div> </div>

View File

@@ -51,9 +51,9 @@ export function ItemTile({
<h3 class="saved-item-tile__title">{item.title}</h3> <h3 class="saved-item-tile__title">{item.title}</h3>
</div> </div>
{item.updatedOn ? ( {item.updatedOn ? (
<span class="saved-item-tile__meta"> <div class="saved-item-tile__meta">
Last updated: {getHumanDate(item.updatedOn)} Last updated: {getHumanDate(item.updatedOn)}
</span> </div>
) : null} ) : null}
</div> </div>
); );

View File

@@ -1,7 +1,7 @@
:root { :root {
--color-text: #d4cde9; --color-text: #d4cde9;
--color-bg: #252637; --color-bg: #252637;
--color-popup: #29233c; --color-popup: #3a2b63;
--code-font-size: 16px; --code-font-size: 16px;
--color-button: #d3a447; --color-button: #d3a447;
--color-focus-outline: #d3a447; --color-focus-outline: #d3a447;
@@ -1059,6 +1059,7 @@ body > #demo-frame {
} }
.saved-item-tile__meta { .saved-item-tile__meta {
margin-top: 8px;
pointer-events: none; pointer-events: none;
opacity: 0.3; opacity: 0.3;
} }
@@ -1458,7 +1459,7 @@ body > #demo-frame {
.social-login-btn--google { .social-login-btn--google {
background: white; background: white;
border: 2px solid currentColor; border: 2px solid currentColor;
color: inherit; color: black;
} }
body.is-logged-in .hide-on-login, body.is-logged-in .hide-on-login,