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);
}

View File

@@ -3,6 +3,7 @@
// iOS Components
@import
"components/app/modes/ios",
"components/icon/modes/ios",
"components/item/modes/ios",
"components/toolbar/modes/ios",

View File

@@ -3,6 +3,7 @@
// Material Design Components
@import
"components/app/modes/md",
"components/toolbar/modes/md",
"components/action-sheet/modes/md",
"components/button/modes/md",
@@ -16,7 +17,7 @@
"components/popup/modes/md",
"components/radio/modes/md",
"components/search-bar/modes/md",
"components/segment/modes/md",
"components/segment/modes/md",
"components/switch/modes/md",
"components/tabs/modes/md",
"components/tap-click/ripple";