fix: adapt modal header to look like design * fix: adapt modal header to look like design Approved-by: Chuma Mcphoy (We Ahead) Approved-by: Matilda Landström
36 lines
559 B
CSS
36 lines
559 B
CSS
.content {
|
|
display: grid;
|
|
gap: var(--Space-x3);
|
|
align-content: start;
|
|
}
|
|
|
|
.infoButton {
|
|
background-color: transparent;
|
|
border-width: 0;
|
|
padding: var(--Space-x025);
|
|
color: var(--Icon-Interactive-Default);
|
|
cursor: pointer;
|
|
flex-shrink: 0;
|
|
vertical-align: bottom;
|
|
margin-right: var(--Space-x05);
|
|
}
|
|
|
|
.closeButton {
|
|
justify-self: stretch;
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.content {
|
|
max-width: 512px;
|
|
}
|
|
|
|
.closeButton {
|
|
justify-self: end;
|
|
min-width: 150px;
|
|
}
|
|
}
|
|
|
|
.textSecondary {
|
|
color: var(--Text-Secondary);
|
|
}
|