1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/ui/components/app/home-notification/index.scss
George Marshall 5592687df1
Updating design tokens package and shadow values with new tokens (#15264)
* Updating design tokens v1.8 and shadows

* Adding missing stories

* Some fixes and updates to css and stories

* removing unneeded story

* Fixing story order
2022-07-21 15:43:31 -07:00

96 lines
1.6 KiB
SCSS

.home-notification {
display: flex;
flex-flow: column;
justify-content: space-between;
background: var(--color-background-default);
box-shadow: var(--shadow-size-md) var(--color-shadow-default);
border: 1px solid var(--color-border-muted);
border-radius: 8px;
min-height: 116px;
padding: 16px;
@media screen and (min-width: $break-large) {
min-width: 472px;
}
&__content-container {
display: flex;
}
&__content {
display: flex;
align-items: center;
justify-content: space-between;
}
&__text {
@include H7;
color: var(--color-text-default);
}
&__text-link {
@include H7;
color: var(--color-primary-default);
cursor: pointer;
}
.fa-info-circle {
color: var(--color-icon-default);
}
&__checkbox-wrapper {
display: flex;
flex-direction: row;
align-items: center;
@media screen and (max-width: $break-small) {
width: 160px;
}
}
&__checkbox {
height: 13px;
width: 13px;
font-size: 16px;
cursor: pointer;
}
&__checkbox-label {
@include H7;
color: var(--color-text-default);
margin-left: 8px;
margin-top: 1px;
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
cursor: pointer;
}
&__ignore-button.button {
width: auto;
padding: 8px 16px;
}
&__accept-button.button {
width: auto;
padding: 8px 16px;
}
&__buttons {
display: flex;
width: 100%;
padding-top: 8px;
align-items: center;
justify-content: space-between;
flex-direction: row-reverse;
}
&__tooltip-wrapper {
display: flex;
margin-left: 8px;
}
}