diff options
Diffstat (limited to 'assets/_global.scss')
-rw-r--r-- | assets/_global.scss | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/assets/_global.scss b/assets/_global.scss new file mode 100644 index 0000000..fb2c3f9 --- /dev/null +++ b/assets/_global.scss @@ -0,0 +1,21 @@ +* { + box-sizing: border-box; +} + +// sticky footer +html { + height: 100%; +} +body { + display: flex; + flex-direction: column; + height: 100%; +} +main { + flex: 1 1 auto; +} + +// remove text decoration +a:hover { + text-decoration: none !important; +} |