This repository has been archived by the owner on May 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: changed css units to rem, where necessary (#30)
- Loading branch information
Showing
7 changed files
with
114 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
.logo { | ||
margin-top: 40px; | ||
margin-top: 2.5rem; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
} | ||
|
||
.header-link { | ||
margin-left: 15px; | ||
margin-left: 0.9375rem; | ||
color: colors.$white; | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
@use '../../theme/variables.scss' as vars; | ||
|
||
.panel-section { | ||
height: 48px; | ||
height: 3rem; | ||
display: flex; | ||
flex-direction: row; | ||
align-items: center; | ||
padding: 15px 16px; | ||
padding: 0.9375rem 1rem; | ||
background: var(--#{vars.$bcgov-prefix}-background); | ||
} | ||
|
||
.panel-section > span { | ||
font-family: 'BC Sans', 'IBM Plex Sans', sans-serif; | ||
font-style: normal; | ||
font-size: 12px; | ||
font-size: 0.75rem; | ||
font-weight: 400; | ||
line-height: 16px; | ||
letter-spacing: 0.32px; | ||
line-height: 1rem; | ||
letter-spacing: 0.02rem; | ||
color: var(--#{vars.$bcgov-prefix}-text-secondary); | ||
user-select: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.