diff options
author | 2021-09-30 22:48:13 +0200 | |
---|---|---|
committer | 2021-10-01 00:53:11 +0200 | |
commit | 79bdb88a5fc099b5871a83d18eadf9b0448b41d1 (patch) | |
tree | d0a8e48dda7649205e08d17c2fa0de938e27a674 /styles/main | |
parent | cf1fbb69d7cdb67219be187fc38feea5a6325f45 (diff) | |
download | my_apps-79bdb88a5fc099b5871a83d18eadf9b0448b41d1.tar.gz my_apps-79bdb88a5fc099b5871a83d18eadf9b0448b41d1.tar.bz2 my_apps-79bdb88a5fc099b5871a83d18eadf9b0448b41d1.zip |
added favicons & notes route for phone
Diffstat (limited to 'styles/main')
-rw-r--r-- | styles/main/_icon.scss | 6 | ||||
-rw-r--r-- | styles/main/_layout.scss | 7 |
2 files changed, 10 insertions, 3 deletions
diff --git a/styles/main/_icon.scss b/styles/main/_icon.scss index efa2ee0..9f9eae6 100644 --- a/styles/main/_icon.scss +++ b/styles/main/_icon.scss @@ -1,17 +1,19 @@ .icon { text-decoration: none; display: inline-block; - padding: 1em; text-align: center; outline: none; + width: 6em; + height: 7em; img { width: 3em; + margin: .5em; } p { margin-top: .25em; - padding: .25em; + padding: .25em 0; transition: .2s background; border-radius: .5em; } diff --git a/styles/main/_layout.scss b/styles/main/_layout.scss index 48374a5..abdd845 100644 --- a/styles/main/_layout.scss +++ b/styles/main/_layout.scss @@ -3,5 +3,10 @@ height: 100vh; background: var(--color-bg); background: linear-gradient(to bottom right, var(--color-bg) 0%, var(--color-bg-alt) 100%); - position: relative; + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + overflow: hidden; } |