diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2024-11-24 19:40:15 -0500 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2024-11-24 19:40:15 -0500 |
commit | 44f32ca142cfa3bf7d11c4cd01bfe369e206a80d (patch) | |
tree | 09de32df34158b979104c6fc296cb7cc6a6db65e /extension/src/index.css | |
parent | 0617a8ed5709972df2d17c6053a9173fd2da469a (diff) | |
download | bookmarks-home-44f32ca142cfa3bf7d11c4cd01bfe369e206a80d.tar.gz bookmarks-home-44f32ca142cfa3bf7d11c4cd01bfe369e206a80d.tar.bz2 bookmarks-home-44f32ca142cfa3bf7d11c4cd01bfe369e206a80d.zip |
Style small icons
Diffstat (limited to '')
-rw-r--r-- | extension/src/index.css | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/extension/src/index.css b/extension/src/index.css index ba651fc..33c176b 100644 --- a/extension/src/index.css +++ b/extension/src/index.css @@ -85,11 +85,30 @@ body > .folderBody { padding: 10px; margin: 10px; user-select: none; + border-radius: 10px; } -.bookmark > img { - padding: 15px; +.icon-box { + margin: 15px; + aspect-ratio: 1 / 1; + display: flex; + align-items: center; + justify-content: center; +} + +.icon-box.small { + border-radius: 10px; + background-color: #ffffff14; +} +.icon-box > img { + width: 100%; + border-radius: 10px; +} + +.icon-box.small > img { + width: 50%; + border-radius: 5px; } .bookmark > span { |