Skip to content
This repository was archived by the owner on Sep 10, 2022. It is now read-only.

Commit 95a4bd7

Browse files
jperssonaddyosmani
authored andcommitted
Split multiple CSS properties into own individual lines (Closes #47)
1 parent c9228b0 commit 95a4bd7

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/styles/core/_card.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,7 @@
2222
background: #fff;
2323
border-radius: 2px;
2424
margin: 16px;
25-
box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);
25+
box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),
26+
0 3px 1px -2px rgba(0,0,0,.2),
27+
0 1px 5px 0 rgba(0,0,0,.12);
2628
}

src/styles/core/_loader.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
stroke-width: 3px;
2828
transform-origin: 50%;
2929

30-
animation: line 1.6s cubic-bezier(0.4, 0.0, 0.2, 1) infinite, rotate 1.6s linear infinite;
30+
animation: line 1.6s cubic-bezier(0.4, 0.0, 0.2, 1) infinite,
31+
rotate 1.6s linear infinite;
3132
}
3233

3334
@keyframes rotate {

0 commit comments

Comments
 (0)