File size: 639 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 |
@import "@automattic/typography/styles/variables";
@import "@automattic/color-studio/dist/color-variables";
.subscription-management {
&__notice {
position: relative;
display: flex;
flex-direction: row;
align-items: flex-start;
padding: 16px 20px;
gap: 16px;
margin-bottom: 20px;
background: $studio-gray-0;
&-icon {
height: 20px;
}
&-content {
font-size: $font-body-small;
line-height: $font-title-small;
letter-spacing: -0.15px;
color: $studio-gray-80;
margin-right: 16px;
}
&-action {
align-self: center;
}
&-close {
position: absolute;
right: 20px;
top: 16px;
}
}
}
|