1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 11:22:43 +02:00
metamask-extension/ui/app/css/itcss/generic/index.scss

51 lines
622 B
SCSS
Raw Normal View History

// Generic styles
* {
box-sizing: border-box;
}
html, body {
font-family: 'Montserrat Regular', Arial;
color: #4D4D4D;
font-weight: 300;
line-height: 1.4em;
background: #F7F7F7;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
html {
min-height: 500px;
}
.app-root {
overflow: hidden;
position: relative
}
.app-primary {
display: flex;
}
input:focus, textarea:focus {
outline: none;
}
#app-content {
overflow-x: hidden;
min-width: 357px;
height: 100%;
display: flex;
flex-direction: column;
}
a {
text-decoration: none;
color: inherit;
}
a:hover{
color: #df6b0e;
}