diff options
| author | Jan Tuomi <jan.tuomi@valuemotive.com> | 2021-11-04 13:34:02 +0200 |
|---|---|---|
| committer | Jan Tuomi <jan.tuomi@valuemotive.com> | 2021-11-04 13:34:02 +0200 |
| commit | 462b2fe10cf45da3dbcb5ee20ca6dfb79f46e6b6 (patch) | |
| tree | 2862938769f5c3e0efd57f5256dbdbb5452cdb4e /components/Social/Social.module.css | |
Initial commit
Diffstat (limited to 'components/Social/Social.module.css')
| -rw-r--r-- | components/Social/Social.module.css | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/components/Social/Social.module.css b/components/Social/Social.module.css new file mode 100644 index 0000000..ad0728a --- /dev/null +++ b/components/Social/Social.module.css @@ -0,0 +1,21 @@ +.social { + display: flex; + flex-flow: row nowrap; + justify-content: center; + align-items: center; + margin: 0 1rem; + width: 45px; + height: 45px; +} + +.social img { + width: 40px; + height: 40px; + transition: transform 0.1s; +} + +.social:hover img, +.social:active img, +.social:focus img { + transform: scale(1.1); +} |
