Browse Source

fix(welcome_page): Update header to latest design & use generic key name

master
Vlad Piersec 4 years ago
parent
commit
721848da3f

+ 1
- 1
css/_variables.scss View File

@@ -184,7 +184,7 @@ $welcomePageHeaderTitleMaxWidth: initial;
184 184
 $welcomePageHeaderTextAlign: center;
185 185
 
186 186
 $welcomePageHeaderContainerDisplay: flex;
187
-$welcomePageHeaderContainerMargin: 146px 32px 0 32px;
187
+$welcomePageHeaderContainerMargin: 104px 32px 0 32px;
188 188
 
189 189
 $welcomePageHeaderTextTitleMarginBottom: 0;
190 190
 $welcomePageHeaderTextTitleFontSize: 42px;

+ 2
- 2
css/_welcome_page.scss View File

@@ -19,8 +19,8 @@ body.welcome-page {
19 19
         background-repeat: $welcomePageHeaderBackgroundRepeat;
20 20
         background-size: $welcomePageHeaderBackgroundSize;
21 21
         padding-bottom: $welcomePageHeaderPaddingBottom;
22
-        background-color: #002637;
23
-        height: 480px;
22
+        background-color: #131519;
23
+        height: 400px;
24 24
         overflow: hidden;
25 25
         position: relative;
26 26
 

BIN
images/welcome-background.png View File


+ 2
- 2
lang/main.json View File

@@ -871,9 +871,10 @@
871 871
         "getHelp": "Get help",
872 872
         "go": "GO",
873 873
         "goSmall": "GO",
874
+        "headerTitle": "Jitsi Meet",
875
+        "headerSubtitle": "Secure and high quality meetings",
874 876
         "info": "Dial-in info",
875 877
         "join": "CREATE / JOIN",
876
-        "jitsiMeet": "Jitsi Meet",
877 878
         "jitsiOnMobile": "Jitsi on mobile – download our apps and start a meeting from anywhere",
878 879
         "moderatedMessage": "Or <a href=\"{{url}}\" rel=\"noopener noreferrer\" target=\"_blank\">book a meeting URL</a> in advance where you are the only moderator.",
879 880
         "privacy": "Privacy",
@@ -885,7 +886,6 @@
885 886
         "roomname": "Enter room name",
886 887
         "roomnameHint": "Enter the name or URL of the room you want to join. You may make a name up, just let the people you are meeting know it so that they enter the same name.",
887 888
         "sendFeedback": "Send feedback",
888
-        "secureMeetings": "Secure and high quality meetings",
889 889
         "startMeeting": "Start meeting",
890 890
         "terms": "Terms",
891 891
         "title": "Secure, fully featured, and completely free video conferencing"

+ 2
- 2
react/features/welcome/components/WelcomePage.web.js View File

@@ -200,10 +200,10 @@ class WelcomePage extends AbstractWelcomePage {
200 200
                     <div className = 'header-image' />
201 201
                     <div className = 'header-container'>
202 202
                         <h1 className = 'header-text-title'>
203
-                            { t('welcomepage.jitsiMeet') }
203
+                            { t('welcomepage.headerTitle') }
204 204
                         </h1>
205 205
                         <span className = 'header-text-subtitle'>
206
-                            { t('welcomepage.secureMeetings')}
206
+                            { t('welcomepage.headerSubtitle')}
207 207
                         </span>
208 208
                         <div id = 'enter_room'>
209 209
                             <div className = 'enter-room-input-container'>

Loading…
Cancel
Save