File tree 2 files changed +22
-1
lines changed
2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 9
9
< div id ="joinButtonContainer ">
10
10
< div class ="joinConferenceFloating ">
11
11
< div class ="joinConferencePrompt ">
12
+ < span class ="icon "> <!-- managed by CSS --> </ span >
12
13
<!-- TODO: i18n -->
13
14
< h2 > Jitsi Video Conference</ h2 >
14
15
< div id ="widgetActionContainer ">
Original file line number Diff line number Diff line change @@ -23,10 +23,11 @@ limitations under the License.
23
23
src : url (' ~matrix-react-sdk/res/fonts/Nunito/Nunito-Regular.ttf' ) format (' truetype' );
24
24
}
25
25
26
+ $fg-color : #edf3ff ;
26
27
body {
27
28
font-family : Nunito, Arial , Helvetica , sans-serif ;
28
29
background-color : #181b21 ;
29
- color : #edf3ff ;
30
+ color : $fg-color ;
30
31
}
31
32
32
33
body , html {
@@ -73,3 +74,22 @@ body, html {
73
74
background-color : #03b381 ;
74
75
border : 0 ;
75
76
}
77
+
78
+ .icon {
79
+ $icon-size : 42px ;
80
+ margin-top : - $icon-size ; // to visually center the form
81
+
82
+ & ::before {
83
+ content : ' ' ;
84
+ background-size : contain ;
85
+ background-color : $fg-color ;
86
+ mask-repeat : no-repeat ;
87
+ mask-position : center ;
88
+ mask-image : url (" ~matrix-react-sdk/res/img/element-icons/call/video-call.svg" );
89
+ mask-size : $icon-size ;
90
+ display : block ;
91
+ width : $icon-size ;
92
+ height : $icon-size ;
93
+ margin : 0 auto ; // center
94
+ }
95
+ }
You can’t perform that action at this time.
0 commit comments