File size: 809 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 |
@import "@automattic/typography/styles/variables";
button.flow-question {
margin: 0;
border-radius: 4px;
cursor: pointer;
text-align: left;
svg {
display: block;
}
.components-card__body {
padding: 22px 22px 24px;
}
&:hover,
&:focus {
box-shadow: 0 0 0 1px var(--studio-wordpress-blue-50);
svg {
fill: var(--studio-wordpress-blue-50);
}
.flow-question__description,
.flow-question__heading {
color: var(--studio-wordpress-blue-50);
}
}
.flow-question__icon {
align-self: flex-start;
}
.flow-question__heading {
font-weight: 500;
font-size: $font-body-large;
display: flex;
align-items: center;
margin-bottom: 5px;
}
.flow-question__description {
color: var(--studio-gray-60);
font-size: $font-body-small;
padding-right: 10px;
margin: 0;
}
}
|