blob: 5c9a2886b5e1241162cd450ce261b6ca3d7c6375 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
.submit {
background: transparent;
border: none;
transition: 0.2s all;
cursor: pointer;
margin-left: 10px;
}
.submit:active {
transform: scale(0.98);
}
.submit__image {
height: 30px;
width: 30px;
}
|