-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/1014 font family and distances (#1109)
* Add styling to h tags and fix multiple css classes * [FM] Automated formating frontend * Change font size * Fix a few classes and change fonts * Delete test.scss since it is not needed anymore * Restore styles.scss and delete the right file this time --------- Co-authored-by: GitHub Actions <[email protected]>
- Loading branch information
1 parent
08b1cf7
commit 46e5a17
Showing
15 changed files
with
36 additions
and
24 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
last 2 Chrome versions | ||
last 1 Firefox version | ||
last 2 Edge major versions | ||
last 2 Safari major versions | ||
last 2 iOS major versions | ||
Firefox ESR |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -90,3 +90,7 @@ | |
.action-list-checked-item { | ||
text-indent: -1.3rem; | ||
} | ||
|
||
.mb-2-rem { | ||
margin-bottom: 2rem !important; | ||
} |
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
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,6 +1,6 @@ | ||
@import "../style/variables"; | ||
.sidebar__content { | ||
padding: 18px; | ||
padding: 32px; | ||
} | ||
|
||
.sidepanel { | ||
|
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,9 +1,9 @@ | ||
@font-face { | ||
font-family: Roboto, sans-serif; | ||
font-display: swap; | ||
font-family: "Roboto"; | ||
font-style: normal; | ||
font-weight: 300; | ||
src: url('./Roboto/Roboto-Regular.ttf') format('ttf'), | ||
url('./Roboto/Roboto-Regular.woff2') format('woff2'), | ||
url('./Roboto/Roboto-Regular.woff') format('woff'); | ||
font-display: swap; | ||
src: | ||
url('./Roboto/RobotoFlex-Regular.woff2') format('woff2'), | ||
url('./Roboto/RobotoFlex-Regular.woff') format('woff'), | ||
url('./Roboto/RobotoFlex-Regular.ttf') format('truetype'); | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
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