mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-15 19:29:02 +08:00
26 lines
468 B
SCSS
26 lines
468 B
SCSS
|
@import "~variables";
|
||
|
|
||
|
.banner {
|
||
|
font-size: 0.9rem;
|
||
|
background-color: $color-black;
|
||
|
color: $color-white;
|
||
|
border-bottom: 1px solid $color-grey;
|
||
|
text-align: center;
|
||
|
padding: 1rem;
|
||
|
|
||
|
&__action {
|
||
|
background-color: $color-white;
|
||
|
transition: 0.1s ease-in-out all;
|
||
|
color: $color-black;
|
||
|
text-decoration: none;
|
||
|
padding: 0.4rem 0.7rem;
|
||
|
margin: 0.5rem;
|
||
|
border-radius: 5px;
|
||
|
|
||
|
&:hover {
|
||
|
background-color: $color-grey;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|