Skip to content

Commit 9e98db3

Browse files
committed
1.3.2
1 parent 8f8c545 commit 9e98db3

File tree

12 files changed

+34
-26
lines changed

12 files changed

+34
-26
lines changed

app/css/burger.css

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/css/burger.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/index.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@
88

99
<title>Burger</title>
1010
<link rel="stylesheet" href="css/burger.min.css">
11+
<style>
12+
body {
13+
font-family: Helvetica Neue, Helvetica, Sans-Serif;
14+
}
15+
</style>
1116
</head>
1217

1318
<body>

app/scss/_burger.scss

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
.burger-nav {
2-
font-family: $b-font-stack;
32
position: absolute;
43
z-index: 11;
54

@@ -29,9 +28,9 @@
2928
}
3029

3130
.burger-link {
31+
background: transparent;
3232
border-left: $b-complement-color solid 0;
3333
color: $b-complement-color;
34-
font-family: $b-font-stack;
3534
font-size: $b-font-size;
3635
font-weight: $b-font-weight;
3736
margin-left: $b-margin;
@@ -88,7 +87,6 @@
8887

8988
.burger-brand {
9089
color: $b-primary-color;
91-
font-family: $b-font-stack;
9290
font-size: $b-font-size;
9391
font-weight: 300;
9492
left: 0;

app/scss/_config.scss

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ $b-bun-height: 2px; //Height of the 'buns'
77
$b-transition: all .4s ease; //Transition settings
88
$b-font-size: 24px; //Font size of brand and links
99
$b-font-weight: 300; //Font weight of brand and links
10-
$b-font-stack: Helvetica Neue, Helvetica, Sans-Serif; //Font family of brand and links
1110
$b-line-height: ($b-height / 2 - ($b-font-size / 2.8)); //Vertically centers brand to menu
1211
$b-txt-pad: 30px; //Left padding on both brand and links
1312
$b-txt-pad-top: ($b-margin + $b-height + $b-txt-pad); //Top margin for first link element
@@ -42,14 +41,16 @@ $b-pad-top: ($b-height / 2 - $b-bun-width-half); //Vertically centers bun in men
4241
}
4342

4443
html,
45-
body {
44+
body.open {
4645
height: 100%;
4746
margin: 0;
4847
min-height: 100%;
4948
}
5049

5150
body {
51+
margin: 0;
5252
position: relative;
53+
width: 100%;
5354

5455
&:after {
5556
background: $b-primary-color;

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "burger",
3-
"version": "1.3.1",
3+
"version": "1.3.2",
44
"homepage": "https://github.com/mblode/burger",
55
"authors": [
66
"mblode <m.blode@gmail.com>"

0 commit comments

Comments
 (0)