1header {
2 display: flex;
3 flex-direction: row;
4}
5
6.filterissue-container {
7 display: flex;
8 flex-direction: row;
9 align-items: flex-start;
10 justify-content: left;
11}
12
13.bt-new-issue {
14 background-color: #2ea44fd9;
15 border: 1px solid;
16 border-color: #1b1f2326;
17 border-radius: 6px;
18 padding: 3px 12px;
19
20 font-size: 12px;
21 color: #ffffff;
22 line-height: 20px;
23 text-decoration: none;
24
25 transition: all 0.2s cubic-bezier(0.3, 0, 0.5, 1);
26}
27
28.bt-new-issue:hover {
29 background-color: #2ea44f;
30 border-color: #1b1f2326;
31}