Skip to content

Commit 191758a

Browse files
committed
Moved sticky-footer.scss to main.scss
1 parent 419d214 commit 191758a

File tree

2 files changed

+24
-16
lines changed

2 files changed

+24
-16
lines changed

_sass/sticky-footer.scss

-15
This file was deleted.

css/main.scss

+24-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
---
22
---
33

4-
@import "sticky-footer";
54
@import "highlight";
65

6+
// Variables
7+
78
$font: "Open Sans", sans-serif;
89
$font-header: "Roboto Condensed", "Open Sans", sans-serif;
910
$text-color: #fafafa;
@@ -18,6 +19,8 @@ $container-padding: 2rem;
1819
$container-padding-half: $container-padding / 2;
1920
$container-padding-double: $container-padding * 2;
2021

22+
// Scrollbar
23+
2124
::-webkit-scrollbar, ::-webkit-scrollbar-corner {
2225
width: 15px;
2326
background-color: $background-highlight;
@@ -33,6 +36,26 @@ $container-padding-double: $container-padding * 2;
3336
}
3437
}
3538

39+
// Sticy footer
40+
41+
html {
42+
position: relative;
43+
min-height: 100%;
44+
}
45+
46+
body {
47+
margin-bottom: 61px;
48+
}
49+
50+
footer {
51+
position: absolute;
52+
bottom: 0;
53+
width: 100%;
54+
height: 61px;
55+
}
56+
57+
// Theme
58+
3659
html {
3760
font-size: 14px;
3861
}

0 commit comments

Comments
 (0)