diff options
-rw-r--r-- | resources/pug/finals/index.pug | 9 | ||||
-rw-r--r-- | resources/sass/style.scss | 1 |
2 files changed, 6 insertions, 4 deletions
diff --git a/resources/pug/finals/index.pug b/resources/pug/finals/index.pug index fe122c0..ec93fc4 100644 --- a/resources/pug/finals/index.pug +++ b/resources/pug/finals/index.pug @@ -12,7 +12,7 @@ block append js block content #sticky-nav - ul.nav.flex-column.nav-pills + ul.nav.nav-pills li.nav-item(role='presentation') #[a.nav-link(href='#introduction') Introduction] li.nav-item(role='presentation') #[a.nav-link(href='#publications') Publications] li.nav-item(role='presentation') #[a.nav-link(href='#talks') Talks] @@ -31,9 +31,10 @@ block content div#basicinfo(style="display:table-cell;vertical-align:bottom;") h1 | Camil Staps  - small.nowrap [kaˈmil stɑps] - small   - small.nowrap he/his + small.text-muted + span.nowrap [kaˈmil stɑps] + span   + span.nowrap he/his p span.tt.obfuscate | info@c diff --git a/resources/sass/style.scss b/resources/sass/style.scss index da32117..b1a2075 100644 --- a/resources/sass/style.scss +++ b/resources/sass/style.scss @@ -74,6 +74,7 @@ body { #sticky-nav ul.nav { border-right: 1px solid #eee; + flex-direction: column; /* .flex-column, but only on large screens */ padding: 1em 1em 1em 0; position: sticky; top: 1em; |