diff options
author | Marvin Borner | 2018-08-24 19:15:57 +0200 |
---|---|---|
committer | Marvin Borner | 2018-08-24 19:15:57 +0200 |
commit | 8e1ab99e0cc37b29cc534846f846b402a833e806 (patch) | |
tree | 4350fc1b920e3a1c11e776feca6d629074afdbd5 | |
parent | b7f861bac0621916f6556899260a2e693b59c099 (diff) |
Fixed bug in modern browsers (underscore between fabs)
-rw-r--r-- | assets/css/style.css | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/assets/css/style.css b/assets/css/style.css index 34c4c15..119b6b2 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -10,7 +10,7 @@ /* ############################################################################################ */ -body, * { +* { text-align: center; background-color: #282828; font-family: Comfortaa; @@ -34,6 +34,7 @@ a:visited { a { color: white; + text-decoration: none; transition: .5s; } |