diff options
author | 2021-09-04 11:20:34 +0200 | |
---|---|---|
committer | 2021-09-04 11:20:34 +0200 | |
commit | 6c54c9d57d5fa4c52aa454ed3ca09060b0674ad3 (patch) | |
tree | 0d236ccdf51f264cced4c8adbad24d1dba065ddf /styles/main/_icon.scss | |
parent | a28b952eafc83ac6f6fc1a3d99805866bc41fde9 (diff) | |
download | my_apps-6c54c9d57d5fa4c52aa454ed3ca09060b0674ad3.tar.gz my_apps-6c54c9d57d5fa4c52aa454ed3ca09060b0674ad3.tar.bz2 my_apps-6c54c9d57d5fa4c52aa454ed3ca09060b0674ad3.zip |
split scss into partials
Diffstat (limited to 'styles/main/_icon.scss')
-rw-r--r-- | styles/main/_icon.scss | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/styles/main/_icon.scss b/styles/main/_icon.scss new file mode 100644 index 0000000..a7c16ed --- /dev/null +++ b/styles/main/_icon.scss @@ -0,0 +1,22 @@ +.icon { + text-decoration: none; + display: inline-block; + padding: .5em; + text-align: center; + outline: none; + + img { + width: 3em; + } + + p { + margin-top: .25em; + padding: .25em; + transition: .2s background; + border-radius: .5em; + } + + &:focus p { + background-color: var(--color-selected); + } +} |