diff options
author | Valentin Popov <info@valentineus.link> | 2018-12-16 16:22:26 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2018-12-16 16:23:50 +0300 |
commit | 0645f56405e111b0012ace8b47b1e3f2f8aecc8b (patch) | |
tree | 083e2149b89a8d4a99a1584b51b1fd7fa63b7180 /_scss/components/_navigation.scss | |
parent | 543fb8d2594c2d4ef373cadb8274b6792ae9b0dc (diff) | |
download | popov.link-0645f56405e111b0012ace8b47b1e3f2f8aecc8b.tar.xz popov.link-0645f56405e111b0012ace8b47b1e3f2f8aecc8b.zip |
fix(navbar): Correct the look of navigation links
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to '_scss/components/_navigation.scss')
-rw-r--r-- | _scss/components/_navigation.scss | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/_scss/components/_navigation.scss b/_scss/components/_navigation.scss index d4def18..749a03e 100644 --- a/_scss/components/_navigation.scss +++ b/_scss/components/_navigation.scss @@ -8,26 +8,19 @@ li { float: left; padding: .5em; - - &:first-child { - padding-left: 0; - } - - &:last-child { - padding-right: 0; - } } } .nav-link { text-align: center; text-decoration: none; + text-transform: uppercase; &:active, &:focus, &:hover { border: 0; - text-decoration: underline; + text-decoration: none; } } |