File tree Expand file tree Collapse file tree 5 files changed +32
-14
lines changed Expand file tree Collapse file tree 5 files changed +32
-14
lines changed Original file line number Diff line number Diff line change @@ -48,11 +48,21 @@ button:hover,
48
48
background-color : var (--red );
49
49
}
50
50
51
+ .button > svg {
52
+ width : 42px ;
53
+ height : 42px ;
54
+ }
55
+
51
56
@media screen and (min-width : 768px ) {
52
57
.reset {
53
58
display : flex;
54
59
justify-content : flex-end;
55
60
}
61
+
62
+ .button > svg {
63
+ width : 24px ;
64
+ height : 24px ;
65
+ }
56
66
}
57
67
.reset {
58
68
display : inline-block;
@@ -82,11 +92,6 @@ button:hover,
82
92
border-radius : 36px ;
83
93
}
84
94
85
- .button > svg {
86
- width : 24px ;
87
- height : 24px ;
88
- }
89
-
90
95
.rounded {
91
96
overflow : hidden;
92
97
border-radius : 50% ;
Original file line number Diff line number Diff line change 1
1
.header {
2
2
display : flex;
3
3
gap : 5px ;
4
+ width : 95% ;
5
+ min-width : 432px ;
6
+ justify-content : space-between;
4
7
z-index : 12 ;
5
8
}
6
9
7
10
.header_button {
8
11
font-size : 0 ;
9
- background-color : white;
12
+ background-color : inherit;
13
+ }
14
+
15
+ @media screen and (min-width : 768px ) {
16
+ .header {
17
+ gap : 5px ;
18
+ justify-content : flex-end;
19
+ }
20
+
21
+ .header_button {
22
+ font-size : 0 ;
23
+ background-color : white;
24
+ }
10
25
}
Original file line number Diff line number Diff line change 27
27
display : flex;
28
28
justify-content : center;
29
29
align-items : center;
30
- flex-direction : row-reverse;
31
- width : 100vw ;
32
- right : 0 ;
30
+ flex-direction : row;
31
+ width : 96vw ;
33
32
height : 50px ;
34
33
padding : 1rem ;
35
34
background-color : var (--beige );
116
115
117
116
.header__right {
118
117
display : flex;
118
+ flex-direction : row-reverse;
119
119
justify-content : flex-start;
120
120
flex-wrap : nowrap;
121
121
align-items : center;
122
122
margin-left : auto;
123
123
position : static;
124
124
background : inherit;
125
+ right : 0 ;
125
126
}
126
127
127
128
.left {
Original file line number Diff line number Diff line change @@ -46,9 +46,8 @@ export const UiReportMenu = () => {
46
46
const strDisabled = ! isLoadedLocal ;
47
47
return (
48
48
< >
49
- < Tooltip content = "Show tags " >
49
+ < Tooltip content = "About " >
50
50
< UIButton
51
- text = "About"
52
51
cx = { cx ( css . button , css [ 'report-menu__report' ] ) }
53
52
icon = "report"
54
53
rounded
@@ -59,7 +58,6 @@ export const UiReportMenu = () => {
59
58
</ Tooltip >
60
59
< Tooltip content = "Screenshot" >
61
60
< UIButton
62
- text = "Screenshot"
63
61
cx = { cx ( css . button , css [ 'report-menu__camera' ] ) }
64
62
icon = "camera"
65
63
rounded
Original file line number Diff line number Diff line change @@ -29,9 +29,8 @@ export const UiSaveMenu = () => {
29
29
} ;
30
30
return (
31
31
< >
32
- < Tooltip content = "Save Nifti " >
32
+ < Tooltip content = "Download " >
33
33
< UIButton
34
- text = "Download"
35
34
cx = { cx ( css . button , css [ 'download__link' ] ) }
36
35
rounded
37
36
icon = "download"
You can’t perform that action at this time.
0 commit comments