mirror of
https://github.com/lichess-org/lila.git
synced 2026-05-26 13:51:00 +00:00
40 lines
598 B
SCSS
40 lines
598 B
SCSS
.link-popup {
|
|
font-size: 1.1em;
|
|
padding: 0 !important;
|
|
max-width: 600px;
|
|
|
|
&__content {
|
|
@extend %flex-center-nowrap, %box-radius-top;
|
|
|
|
background: $c-bg-zebra;
|
|
padding: 2em;
|
|
|
|
&::before {
|
|
@extend %data-icon;
|
|
|
|
content: $licon-InfoCircle;
|
|
font-size: 5em;
|
|
opacity: 0.5;
|
|
margin-inline: 0 2rem;
|
|
}
|
|
|
|
&__title {
|
|
text-align: start;
|
|
}
|
|
|
|
&__advice {
|
|
font-size: 1.1em;
|
|
color: $c-brag;
|
|
margin: 0;
|
|
margin-top: 0.3em;
|
|
}
|
|
}
|
|
|
|
&__actions {
|
|
@extend %flex-center-center;
|
|
|
|
padding: 2em;
|
|
gap: 2em;
|
|
}
|
|
}
|