diff options
author | Freya Murphy <freya@freyacat.org> | 2024-09-24 17:31:29 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-09-24 17:31:29 -0400 |
commit | 83a1fe244f94afc78f364956051f9e16a3141ed3 (patch) | |
tree | 5013eff5a2f2c635d735b8c2c15b0c676ec36aa7 /src/scss/legacy.scss | |
parent | update blog times, fix blog refs (diff) | |
download | website-83a1fe244f94afc78f364956051f9e16a3141ed3.tar.gz website-83a1fe244f94afc78f364956051f9e16a3141ed3.tar.bz2 website-83a1fe244f94afc78f364956051f9e16a3141ed3.zip |
fix ie6 support
Diffstat (limited to '')
-rw-r--r-- | src/scss/legacy.scss | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/scss/legacy.scss b/src/scss/legacy.scss index dbb7bf3..c6198cf 100644 --- a/src/scss/legacy.scss +++ b/src/scss/legacy.scss @@ -2,10 +2,14 @@ @import "./variables"; -* { +#header, #footer { behavior: url(boxsizing.htc); } +.ie-nav { + margin-left: 90px; +} + #main .col { display: block !important; width: 100% !important; @@ -16,8 +20,8 @@ padding-bottom: $outer-gap; } -#nav { - behavior: url(display-table.htc); +#main .right { + margin-top: $outer-gap; } #new_comment { |