File size: 1,212 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | @import "@automattic/typography/styles/variables";
.font-pairing-variations {
display: grid;
gap: 10px 6px;
grid-template-columns: repeat(2, 1fr);
min-width: 100%;
box-sizing: border-box;
margin: 14px -2px 2px;
.global-styles-variation-container__iframe {
max-height: 106px;
}
.global-styles-variation__item {
position: relative;
margin: 2px;
cursor: pointer;
&::after {
content: "";
display: block;
position: absolute;
top: -2px;
bottom: -2px;
left: -2px;
right: -2px;
border-radius: 3px;
opacity: 0;
pointer-events: none;
}
&:hover,
&:focus-visible,
&.is-active {
&::after {
opacity: 1;
}
}
&.is-active {
&::after {
box-shadow: 0 0 0 2px var(--studio-gray);
}
}
&:hover,
&:focus-visible {
&::after {
box-shadow: 0 0 0 2px var(--color-primary-light);
}
}
}
.global-styles-variation__item-preview {
padding: 1px;
}
}
.global-styles-variations__group-title {
display: flex;
color: var(--color-neutral-100);
font-size: $font-body-small;
font-weight: 500;
letter-spacing: -0.15px;
line-height: 1.7;
align-items: center;
}
.global-styles-variations__group-title-actual {
white-space: nowrap;
}
|