Skip to content

Commit

Permalink
fixed topnav text size and width
Browse files Browse the repository at this point in the history
  • Loading branch information
juliagsy committed Jul 12, 2023
1 parent 73a5b32 commit e8ef6ee
Showing 1 changed file with 41 additions and 1 deletion.
42 changes: 41 additions & 1 deletion assets/css/custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -168,4 +168,44 @@ img.navbar-logo {

ul.navbar-nav.navbar-nav-scroll.me-auto {
margin-right: 0 !important ;
}
}

span.menu-text {
font-size: medium;
}

.navbar-container {
margin: 0 auto 0 auto;
justify-content: center;
}

@media only screen and (max-width: 1023px) {
.navbar-nav {
text-align: center;
margin-left: auto;
}
}

@media only screen and (max-width: 1550px) {
.navbar-container {
max-width: 95%;
}
}

@media only screen and (min-width: 1550px) and (max-width: 1634px) {
.navbar-container {
max-width: 80%;
}
}

@media only screen and (min-width: 1634px) and (max-width: 1968px) {
.navbar-container {
max-width: 70%;
}
}

@media only screen and (min-width: 1968px) {
.navbar-container {
max-width: 60%;
}
}

0 comments on commit e8ef6ee

Please sign in to comment.