tiptap/examples/Components/Hero/style.scss

25 lines
292 B
SCSS
Raw Normal View History

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