mirror of
https://github.com/status-im/fathom.git
synced 2025-03-01 03:20:27 +00:00
24 lines
302 B
SCSS
24 lines
302 B
SCSS
|
|
||
|
input {
|
||
|
padding: 4px 6px;
|
||
|
}
|
||
|
|
||
|
label {
|
||
|
display: block;
|
||
|
margin-bottom: 2px;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
input[type="submit"] {
|
||
|
background: #533feb;
|
||
|
color: white;
|
||
|
padding: 6px 12px;
|
||
|
border: 0;
|
||
|
cursor: pointer;
|
||
|
|
||
|
&:hover,
|
||
|
&:active {
|
||
|
background: darken(#533feb, 15%);
|
||
|
}
|
||
|
}
|