Skip to content

Commit

Permalink
Merge pull request #13 from thecurator/master
Browse files Browse the repository at this point in the history
SCSS was broken, causing flags to have zero height.
  • Loading branch information
kristianmandrup committed Oct 30, 2013
2 parents 1d49b16 + 442c7c8 commit c31f1ff
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions vendor/assets/stylesheets/flags/basic.css
Expand Up @@ -9,34 +9,34 @@
}

.border .flag {
border: 1px solid;
border: 1px solid;
}

.border .flag.selected {
border: 1px solid black;
}

.f16.flag {
.f16 .flag {
width: 16px;
height: 16px;
}

.f24.flag {
.f24 .flag {
width: 24px;
height: 24px;
}

.f32.flag {
.f32 .flag {
width: 32px;
height: 32px;
}

.f48.flag {
.f48 .flag {
width: 48px;
height: 48px;
}

.f64.flag {
.f64 .flag {
width: 64px;
height: 64px;
}
12 changes: 6 additions & 6 deletions vendor/assets/stylesheets/flags/basic.scss.css
Expand Up @@ -18,28 +18,28 @@
}
}

.f16.flag {
.f16 .flag {
width: 16px;
height: 16px;
}

.f24.flag {
.f24 .flag {
width: 24px;
height: 24px;
}

.f32.flag {
.f32 .flag {
width: 32px;
height: 32px;
}

.f48.flag {
.f48 .flag {
width: 48px;
height: 48px;
}

.f64.flag {
.f64 .flag {
width: 64px;
height: 64px;
line-height: 64px;
line-height: 64px;
}

0 comments on commit c31f1ff

Please sign in to comment.