Fixed overflowing navbar

This commit is contained in:
Jeffrey Phillips Freeman 2023-10-21 13:44:42 -04:00
parent c91d28e422
commit e3eea99387
No known key found for this signature in database
GPG key ID: AD914585C9406B6A
2 changed files with 5 additions and 5 deletions

View file

@ -12,7 +12,8 @@
* Removed significant portions of unused CSS to load quicker.
* Improved responsive aspects of the CSS.
* Several root settings in `/hugo.toml` were being overridden such as `paginate`
these should now be fixed
these should now be fixed.
* Fixed the CSS so the `navbar` wont overflow under very low resolutions.
## 2.0.0

View file

@ -1296,7 +1296,7 @@ a.card:hover{
height:3.75rem;
height:var(--ifm-navbar-height);
padding:var(--ifm-navbar-padding-vertical) var(--ifm-navbar-padding-horizontal);
width:100%
width:100vw;
}
.navbar,.navbar>.container{
display:flex
@ -2343,7 +2343,7 @@ div#ch-tooltip {
}
/******navbar*****/
:root {
/* :root {
--ifm-navbar-height: 2rem;
--ifm-navbar-item-padding-vertical: 0.25rem;
}
@ -2362,8 +2362,7 @@ div#ch-tooltip {
box-sizing: border-box;
height: var(--ifm-navbar-height);
padding: var(--ifm-navbar-padding-vertical) var(--ifm-navbar-padding-horizontal);
width: 100%;
}
} */
/***contact****/