diff options
| author | shpuld <shpuld@gmail.com> | 2017-02-24 10:17:41 +0200 |
|---|---|---|
| committer | shpuld <shpuld@gmail.com> | 2017-02-24 10:17:41 +0200 |
| commit | e0e507348cc22054e55e2be8fa6544845f597610 (patch) | |
| tree | 140786bd7ba15309d96ce8bd9790ab5b458438a0 /src | |
| parent | d030462d12f64b6a1c594decac65c787f3a336c7 (diff) | |
Give buttons cursor: pointer; Make border radii more consistent by not using em everywhere.
Diffstat (limited to 'src')
| -rw-r--r-- | src/App.scss | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/App.scss b/src/App.scss index b0888ac7..1e38275e 100644 --- a/src/App.scss +++ b/src/App.scss @@ -32,6 +32,7 @@ a { button{ border: none; border-radius: 5px; + cursor: pointer; &:hover { background-color: white; @@ -102,11 +103,11 @@ main-router { flex-direction: column; margin: 0.5em; - border-radius: 0.5em; + border-radius: 10px; } .panel-heading { - border-radius: 0.5em 0.5em 0 0; + border-radius: 10px 10px 0 0; background-size: cover; padding: 0.6em 0; text-align: center; @@ -115,7 +116,7 @@ main-router { } .panel-footer { - border-radius: 0 0 0.5em 0.5em; + border-radius: 0 0 10px 10px; } .panel-body > p { @@ -128,7 +129,7 @@ main-router { #content { margin: auto; max-width: 980px; - border-radius: 1em; + border-radius: 10px; padding-bottom: 1em; background-color: rgba(0,0,0,0.1); } |
