1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Fix invalid CSS rules (#9039)

This commit is contained in:
Whymarrh Whitby 2020-07-20 15:26:44 -02:30 committed by GitHub
parent 2ae4720443
commit 2389777244
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 6 additions and 8 deletions

View File

@ -16,7 +16,6 @@
position: relative;
width: 100%;
height: 100%;
visibility: none;
.fa-sm {
display: initial;

View File

@ -129,8 +129,8 @@
}
&__tooltip-body {
display: 'flex';
flex-direction: 'column';
display: flex;
flex-direction: column;
}
&__bold-title-elements {

View File

@ -34,7 +34,6 @@
.page-container__bottom {
display: flex;
flex-direction: column;
flex-flow: space-between;
height: 100%;
}

View File

@ -9,11 +9,11 @@
border-radius: 3px;
}
button:first-child() {
button:first-child {
margin-left: 1rem;
}
button:last-child() {
button:last-child {
margin-right: 1rem;
}
}

View File

@ -5,7 +5,7 @@
}
.permission_approval_origin {
font-weight: 999;
font-weight: 900;
margin-top: 16px;
word-wrap: break-word;
}

View File

@ -1,5 +1,5 @@
// These are the colors of the MetaMask design system
// Only design system colors should be added, no superfulous variables
// Only design system colors should be added, no superfluous variables
// See https://bit.ly/32mnoja (link to figma design system)
$Blue-000: #eaf6ff;
$Blue-100: #a7d9fe;