blob: 41814a38cc9dd2622c19b9d3e444e7c365d7e1f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// COMPOSE BUTTON
#compose {
margin-bottom: 5px;
padding-right: 4px;
#compose-trigger {
width: 100%;
display: inline-block;
padding: 5px;
#compose-mails-trigger {
background: $action_buttons;
color: $white;
padding: 10px 30px;
text-align: center;
font-weight: 400;
font-size: 1.2em;
@include btn-transition;
&:hover {
background: lighten($action_buttons, 10%);
cursor: pointer;
}
}
}
}
|