1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/pages/confirmation/confirmation.scss

72 lines
1.3 KiB
SCSS
Raw Normal View History

2021-02-22 17:20:42 +01:00
@import 'components/confirmation-footer/confirmation-footer';
.confirmation-page {
width: 100%;
height: 100%;
position: relative;
background: white;
display: grid;
flex-direction: column;
grid-template-columns: 1fr;
grid-template-rows: auto 1fr auto;
grid-template-areas:
'navigation'
'content'
'footer';
a {
color: var(--primary-1);
2021-02-22 17:20:42 +01:00
}
&__content {
grid-area: content;
padding: 16px 16px 0;
min-width: 0;
2021-02-22 17:20:42 +01:00
& > :last-child {
margin-bottom: 16px;
}
}
&__navigation {
@include H7;
grid-area: navigation;
background-color: var(--Grey-000);
border-bottom: 1px solid var(--geyser);
2021-02-22 17:20:42 +01:00
padding: 6px 16px 5px 16px;
color: var(--Grey-500);
2021-02-22 17:20:42 +01:00
display: grid;
grid-template-columns: 1fr minmax(0, auto) minmax(0, auto);
align-items: center;
}
&__navigation-button {
background-color: white;
border-radius: 100px;
color: var(--Grey-500);
2021-02-22 17:20:42 +01:00
font-size: $font-size-h6;
height: 20px;
width: 20px;
padding: 0;
&:disabled {
cursor: not-allowed;
background-color: var(--Grey-100);
color: var(--Grey-300);
2021-02-22 17:20:42 +01:00
}
}
&__navigation &__navigation-button:last-child {
margin-left: 8px;
}
.chip {
max-width: 100%;
&__label {
word-break: break-all;
}
}
2021-02-22 17:20:42 +01:00
}