wpmind/src/editor/popup/components/not-connected-screen/style.scss
Nikita e67eca2ee0 added support for Anthropic and it is recommended
move code to work with AI from rest class to separate class
2024-12-27 14:31:22 +03:00

53 lines
874 B
SCSS

@import "../../../../mixins/text-gradient";
.mind-popup-connected-screen {
display: flex;
flex-direction: column;
gap: 20px;
padding: 30px;
text-align: center;
h2 {
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;
@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);
}
}