tiptap/examples/Components/Banner/style.scss

35 lines
625 B
SCSS
Raw Normal View History

@import "~variables";
.banner {
font-size: 0.9rem;
background-color: $color-white;
color: $color-black;
border-bottom: 1px solid $color-grey;
text-align: center;
2020-12-10 23:15:01 +08:00
padding: 0.5rem 1rem;
&__action {
2020-12-10 23:15:01 +08:00
display: inline-block;
border: 3px solid $color-grey;
font-weight: bold;
transition: 0.1s ease-in-out all;
text-decoration: none;
padding: 0.4rem 0.7rem;
margin: 0.5rem 0.5rem 0.25rem;
border-radius: 5px;
2020-12-10 23:15:01 +08:00
white-space: nowrap;
&:hover {
border-color: $color-black;
}
}
2020-12-10 23:15:01 +08:00
&__message {
@media all and (max-width: 600px) {
display: block;
}
}
}