mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 12:56:01 +01:00
8fcbebc546
* Updating account menu icon color * Updating design-tokens and making appropriate updates to extension styles * Adding more deprecated tags to colors * Adding spinner and removing todo comment * Remove comment * Updates * Updating snapshots * More color and ui updates * reverting transition change
53 lines
812 B
SCSS
53 lines
812 B
SCSS
.edit-gas-tooltip {
|
|
&__container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
height: 100%;
|
|
min-width: 160px;
|
|
|
|
img {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
&__message {
|
|
width: 100%;
|
|
}
|
|
|
|
&__dialog {
|
|
background-color: var(--color-warning-default);
|
|
border-radius: 30px;
|
|
margin: 4px 0;
|
|
text-align: center;
|
|
padding: 4px;
|
|
}
|
|
|
|
&__label {
|
|
white-space: nowrap;
|
|
min-width: 50%;
|
|
}
|
|
|
|
&__value {
|
|
min-width: 50%;
|
|
}
|
|
|
|
p {
|
|
margin-bottom: 0 !important;
|
|
}
|
|
|
|
&__values {
|
|
width: 100%;
|
|
margin-top: 8px;
|
|
|
|
div {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
text-align: left;
|
|
}
|
|
}
|
|
}
|
|
}
|