webapp/src/components/Feed/FeedArticlePopup.module.scss

23 lines
396 B
SCSS
Raw Normal View History

2023-02-06 21:35:08 +00:00
.feedArticlePopup {
box-shadow: none !important;
2023-02-10 01:19:20 +00:00
border: 1px solid rgb(0 0 0 / 15%);
2023-02-06 21:35:08 +00:00
border-radius: 1.6rem;
padding: 1.6rem !important;
@include media-breakpoint-between(sm, md) {
left: auto !important;
right: 0;
transform: none !important;
}
button {
2023-06-27 22:47:47 +00:00
font-size: inherit;
font-weight: 500;
2023-02-06 21:35:08 +00:00
&:hover {
background: #000;
color: #fff;
}
}
}