Skip to content

Commit

Permalink
upd styles
Browse files Browse the repository at this point in the history
  • Loading branch information
deadit committed Jun 10, 2019
1 parent 718b720 commit 9ef8193
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
7 changes: 6 additions & 1 deletion client/src/assets/styles/base/normalize.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
* {
box-sizing: border-box;
letter-spacing: 0.2px;
}

html {
box-sizing: border-box;
}
*, *::before, *::after {
box-sizing: inherit;
}

/* #NORMALIZE
-------------------------------------------------- */
Expand Down
5 changes: 3 additions & 2 deletions client/src/components/header/header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ $header-toggle-color: #ffffff;

.bi-header {
position: relative;
box-sizing: content-box;
height: 100px;
background-color: $header-bg-color;
box-shadow: 0 2px 6px 0 rgba(0,0,0,0.02);
Expand All @@ -32,9 +33,9 @@ $header-toggle-color: #ffffff;
color: $header-logo-color;
font-family: $theme-main-font;
font-size: 14px;
line-height: 0;
white-space: nowrap;
text-decoration: none;
line-height: 0;
}

&__logo-icon {
Expand Down Expand Up @@ -79,4 +80,4 @@ $header-toggle-color: #ffffff;
.bi-header {
display: none;
}
}
}

0 comments on commit 9ef8193

Please sign in to comment.