File size: 452 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 |
.performance-profiler-disclaimer {
display: flex;
padding: 64px 0;
justify-content: space-between;
align-items: flex-end;
gap: 10px;
flex-wrap: wrap;
color: var(--studio-gray-70);
font-size: $font-body-extra-small;
line-height: $font-title-small;
.content {
max-width: 600px;
}
.link {
flex-shrink: 0;
text-align: right;
&:hover {
text-decoration: underline;
}
a,
a:visited {
color: var(--studio-gray-70);
}
}
}
|