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/Box/Box.module.css | |
Initial commit
Diffstat (limited to 'components/Box/Box.module.css')
| -rw-r--r-- | components/Box/Box.module.css | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/components/Box/Box.module.css b/components/Box/Box.module.css new file mode 100644 index 0000000..f6234ff --- /dev/null +++ b/components/Box/Box.module.css @@ -0,0 +1,22 @@ +.box { + padding: 1rem 1rem; + width: 100%; + color: #333; + background-color: #eee; + display: flex; + flex-flow: row nowrap; + justify-content: space-between; + align-items: center; +} + +.box:hover, +.box:active, +.box:focus { + font-weight: bold; + background-color: #ddd; +} + +.arrow { + font-size: 24px; + line-height: 20px; +}
\ No newline at end of file |
