131 lines
2.4 KiB
CSS
131 lines
2.4 KiB
CSS
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Space-x3);
|
|
}
|
|
|
|
.divider {
|
|
margin-top: var(--Space-x2);
|
|
|
|
@media screen and (min-width: 768px) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.mutationSection {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
gap: var(--Space-x2);
|
|
align-items: flex-end;
|
|
|
|
@media screen and (min-width: 768px) {
|
|
align-items: center;
|
|
flex-direction: row;
|
|
}
|
|
}
|
|
|
|
.matchedAccountSection {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Space-x3);
|
|
padding: var(--Space-x4) var(--Space-x15);
|
|
width: 100%;
|
|
background-color: var(--Surface-Primary-On-Surface-Default);
|
|
border: 1px solid var(--Border-Default);
|
|
border-radius: var(--Corner-Radius-md);
|
|
box-shadow:
|
|
0px 0px 4px 2px rgba(0, 0, 0, 0.1),
|
|
0px 4px 4px 0px rgba(255, 255, 255, 0.29) inset;
|
|
|
|
@media screen and (min-width: 768px) {
|
|
padding: var(--Space-x4) var(--Space-x3);
|
|
}
|
|
}
|
|
|
|
.accountDetails {
|
|
display: flex;
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
gap: var(--Space-x1);
|
|
|
|
@media screen and (min-width: 768px) {
|
|
gap: var(--Space-x7);
|
|
}
|
|
}
|
|
|
|
.accountMemberNumber {
|
|
@media screen and (min-width: 768px) {
|
|
margin-left: auto;
|
|
}
|
|
}
|
|
|
|
.tierMatchStatus {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Space-x2);
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
border: 1px solid var(--Border-Divider-Accent);
|
|
border-radius: var(--Corner-Radius-sm);
|
|
padding: var(--Space-x2);
|
|
background:
|
|
linear-gradient(
|
|
0deg,
|
|
var(--Surface-Brand-Primary-1-Default, --Scandic-Peach-10),
|
|
var(--Surface-Brand-Primary-1-Default, --Scandic-Peach-10)
|
|
),
|
|
linear-gradient(
|
|
180deg,
|
|
rgba(242, 236, 230, 0.05) 0%,
|
|
rgba(143, 67, 80, 0.05) 100%
|
|
);
|
|
|
|
@media screen and (min-width: 768px) {
|
|
flex-direction: row;
|
|
gap: var(--Space-x1);
|
|
}
|
|
}
|
|
|
|
.textRight {
|
|
text-align: right;
|
|
}
|
|
|
|
.stack {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--Space-x05);
|
|
}
|
|
|
|
.caption {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--Space-x05);
|
|
color: var(--Text-Tertiary);
|
|
align-self: flex-start;
|
|
}
|
|
|
|
.sasMark {
|
|
color: var(--Scandic-Blue-70);
|
|
}
|
|
|
|
.scandicMark {
|
|
color: var(--Scandic-Red-Default);
|
|
}
|
|
|
|
.tierMatchText {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: var(--Space-x1);
|
|
}
|
|
|
|
.label {
|
|
color: var(--Text-Tertiary);
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.iconWrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|