wpmind/src/editor/popup/components/not-connected-screen/style.scss

54 lines
874 B
SCSS
Raw Normal View History

2023-08-05 17:20:10 +03:00
@import "../../../../mixins/text-gradient";
.mind-popup-connected-screen {
display: flex;
flex-direction: column;
gap: 20px;
padding: 30px;
text-align: center;
h2 {
2023-08-04 13:39:28 +03:00
display: flex;
gap: 7px;
align-items: center;
justify-content: center;
font-size: 16px;
font-weight: 500;
margin: 0;
}
p {
font-size: 14px;
font-weight: 300;
margin: 0;
}
}
.mind-popup-connected-screen-button {
position: relative;
display: inline-block;
text-decoration: none;
padding: 10px 15px;
margin-top: -10px;
margin-bottom: -10px;
color: var(--mind-brand-color);
font-weight: 500;
2023-08-05 17:20:10 +03:00
@include text-gradient(var(--mind-brand-color), var(--mind-brand-color-2));
&::after {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
opacity: 0.05;
}
&:hover::after,
&:focus::after {
background-color: var(--mind-brand-color);
}
}