diff options
Diffstat (limited to '_scss/components')
-rw-r--r-- | _scss/components/theme/_table.scss | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/_scss/components/theme/_table.scss b/_scss/components/theme/_table.scss new file mode 100644 index 0000000..7af38d5 --- /dev/null +++ b/_scss/components/theme/_table.scss @@ -0,0 +1,19 @@ +table { + border-spacing: 0; + width: 100%; +} + +td, +th { + border-bottom: .1rem solid $color-quinary; + padding: 1.2rem 1.5rem; + text-align: left; + + &:first-child { + padding-left: 0; + } + + &:last-child { + padding-right: 0; + } +} |