Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make metrics page font size consistent #1738

Merged
merged 6 commits into from
Feb 2, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions app/assets/stylesheets/metrics.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,25 @@
@import "semantic-ui";
@import 'variables';

/* reset changes by semantic-ui (Line 8-24)*/
damianhxy marked this conversation as resolved.
Show resolved Hide resolved
@media only screen and (min-width: 0) {
html {
font-size: 14px;
}
}

@media only screen and (min-width: 992px) {
html {
font-size: 14.5px;
}
}

@media only screen and (min-width: 1200px) {
html {
font-size: 15px;
}
}

.button.submit {
color: #FFFFFF !important;
background-color: $autolab-red !important;
Expand Down
3 changes: 3 additions & 0 deletions app/assets/stylesheets/navbar.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ nav i, nav [class^="mdi-"], nav [class*="mdi-"], nav i.material-icons {
height: 50px;
}

.navbar-menu li>a{
damianhxy marked this conversation as resolved.
Show resolved Hide resolved
font-size: 15px;
}
nav a, nav a:hover, nav a:focus{
text-decoration: none;
color:white;
Expand Down