tiptap/examples/Components/Hero/style.scss

24 lines
268 B
SCSS
Raw Normal View History

2018-08-23 14:03:42 +08:00
@import "~variables";
.hero {
background-color: $color-black;
color: $color-white;
text-align: center;
padding: 3rem 1rem;
&__inner {
margin: 0 auto;
max-width: 30rem;
}
2018-08-25 05:25:36 +08:00
&__logo {
width: 4rem;
height: 4rem;
path {
fill: $color-white;
}
}
2018-08-23 14:03:42 +08:00
}