diff options
Diffstat (limited to 'app/static/scss')
-rw-r--r-- | app/static/scss/style.scss | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/app/static/scss/style.scss b/app/static/scss/style.scss index cc23959..7c8760c 100644 --- a/app/static/scss/style.scss +++ b/app/static/scss/style.scss @@ -36,6 +36,11 @@ button.accent { border-color: $color-accent-bg; } +h1,h2,h3,h4,h5,h6 { + border-bottom: 1px solid; + width:50%; +} + // Navbar .navbar { @@ -56,13 +61,16 @@ button.accent { .flashes { list-style-type: none; display: flex; + justify-content: center; } .message { - width: 30%; + width: 80%; justify-content: center; border: 1px solid $color-fg; background-color: $color-accent-bg; + padding: 0.2rem; + font-size: large; color: black; } |