feat(hr): added styling for HR for both modes

closes #355
This commit is contained in:
Brandy Carney
2015-10-27 17:29:18 -04:00
parent 03e54487f0
commit 1fcd2e3db1
4 changed files with 25 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
// iOS App
// --------------------------------------------------
hr {
border-width: 0;
height: 1px;
background-color: rgba(0, 0, 0, 0.12);
}
&.hairlines hr {
height: 0.55px;
}

View File

@@ -0,0 +1,9 @@
// Material Design App
// --------------------------------------------------
hr {
border-width: 0;
height: 1px;
background-color: rgba(0, 0, 0, 0.08);
}