Skip to content

Commit 7c5cca7

Browse files
a propos
1 parent 559c273 commit 7c5cca7

File tree

4 files changed

+103
-22
lines changed

4 files changed

+103
-22
lines changed

src/components/ChatComponent.vue

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,14 @@ const computedStatus = computed(() => store.chatStatus);
179179
z-index: 1;
180180
}
181181
182+
.queues-wrapper {
183+
width: 95%;
184+
display: block;
185+
padding-top: 0.5rem;
186+
margin: auto;
187+
margin-top: auto;
188+
}
189+
182190
.input-area {
183191
width: 85%;
184192
padding: 0.25rem 0.25rem;

src/components/ChatQueuesPills.vue

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@ defineProps<{
6969
margin: 0;
7070
font-size: 0.9rem;
7171
}
72+
73+
.card {
74+
margin: 0rem 0rem;
75+
}
7276
}
7377
7478
@media screen and (min-width: 768px) {

src/components/FooterComponent.vue

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,17 @@ a:first-child {
3535
a:hover {
3636
text-decoration: underline;
3737
}
38+
39+
@media screen and (max-width: 767px) {
40+
.footer-wrapper {
41+
padding: 0 1rem;
42+
justify-content: center;
43+
font-size: 0.8rem;
44+
}
45+
46+
a:first-child {
47+
margin-right: 0.5rem;
48+
padding-right: 0.5rem;
49+
}
50+
}
3851
</style>

src/views/AboutPage.vue

Lines changed: 78 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ const sourcesStore = useSourcesStore();
88
<div class="wrapper py-6">
99
<div class="presentation is-flex is-fullwidth is-justify-content-center is-align-items-center">
1010
<div class="call-to-action is-flex is-flex-direction-column is-justify-content-space-between">
11-
<div class="is-size-1 has-text-weight-bold has-text-centered is-uppercase">
11+
<div class="is-size-1 is-size-4-mobile has-text-weight-bold has-text-centered is-uppercase">
1212
{{ $t('landing.slogan') }}
1313
</div>
14-
<p class="subtitle has-text-centered mt-4 mb-6">
14+
<p class="subtitle is-size-6-mobile has-text-centered mt-4 mb-6">
1515
{{ $t('landing.description') }}
1616
</p>
1717
</div>
1818
</div>
1919

20-
<div class="has-text-centered partnership">
21-
<div class="is-flex my-4 is-justify-content-space-between is-align-items-center">
20+
<div class="partnership">
21+
<div class="logos my-4">
2222
<img alt="logo" class="partner-logo mx-4" src="@/assets/lpi_logo.png" />
2323
<img alt="logo" class="partner-logo mx-4" src="@/assets/uved.png" />
2424
<img alt="logo" class="partner-logo mx-4" src="@/assets/cy_logo.png" />
@@ -27,9 +27,9 @@ const sourcesStore = useSourcesStore();
2727
<h1 class="subtitle is-6 mt-6">{{ $t('landing.partnership') }}</h1>
2828
</div>
2929

30-
<div class="product-description has-text-centered">
31-
<h3 class="title is-size-4 pt-6">{{ $t('landing.aboutTitle') }}</h3>
32-
<p class="subtitle mt-4">
30+
<div class="product-description">
31+
<h3 class="title is-size-4 pt-6 has-text-centered">{{ $t('landing.aboutTitle') }}</h3>
32+
<p class="subtitle is-size-6-mobile mt-4">
3333
{{ $t('landing.aboutDescription') }}
3434
</p>
3535
</div>
@@ -85,9 +85,9 @@ const sourcesStore = useSourcesStore();
8585
<div class="section mt-6">
8686
<div class="is-flex is-fullwidth is-justify-content-space-evenly">
8787
<div class="description">
88-
<p class="subtitle has-text-weight-bold mb-2">
88+
<p class="subtitle is-size-6-mobile has-text-weight-bold mb-2">
8989
{{ $t('landing.horizontal.section_one.title') }}
90-
<span class="is-size-4 ml-4">></span>
90+
<span class="is-size-4 is-size-6-mobile ml-4">></span>
9191
</p>
9292
<p class="subtitle is-size-6 pb-6">
9393
{{ $t('landing.horizontal.section_one.content') }}
@@ -98,11 +98,11 @@ const sourcesStore = useSourcesStore();
9898
<div class="section">
9999
<div class="is-flex is-fullwidth is-justify-content-space-evenly">
100100
<div class="description">
101-
<p class="subtitle has-text-weight-bold mb-2">
101+
<p class="subtitle is-size-6-mobile has-text-weight-bold mb-2">
102102
{{ $t('landing.horizontal.section_two.title') }}
103-
<span class="is-size-4 ml-4">></span>
103+
<span class="is-size-4 is-size-6-mobile ml-4">></span>
104104
</p>
105-
<p class="subtitle is-size-6 pb-6">
105+
<p class="subtitle is-size-6 is-size-6-mobile pb-6">
106106
{{ $t('landing.horizontal.section_two.content') }}
107107
</p>
108108
</div>
@@ -111,9 +111,9 @@ const sourcesStore = useSourcesStore();
111111
<div class="section">
112112
<div class="is-flex is-fullwidth is-justify-content-space-evenly">
113113
<div class="description">
114-
<p class="subtitle has-text-weight-bold mb-2">
114+
<p class="subtitle is-size-6-mobile has-text-weight-bold mb-2">
115115
{{ $t('landing.horizontal.section_three.title') }}
116-
<span class="is-size-4 ml-4">></span>
116+
<span class="is-size-4 is-size-6-mobile ml-4">></span>
117117
</p>
118118
<p class="subtitle is-size-6 pb-6">
119119
{{ $t('landing.horizontal.section_three.content') }}
@@ -122,24 +122,26 @@ const sourcesStore = useSourcesStore();
122122
</div>
123123
</div>
124124
<div class="section px-6 pb-6">
125-
<div class="is-flex mx-6">
125+
<div class="is-flex is-flex-wrap-wrap mx-6">
126126
<div class="px-4">
127-
<p class="subtitle has-text-weight-bold">
127+
<p class="subtitle is-size-6-mobile has-text-weight-bold">
128128
{{ $t('landing.vertical.section_one.title') }}
129129
</p>
130-
<p class="subtitle">{{ $t('landing.vertical.section_one.content') }}</p>
130+
<p class="subtitle is-size-6-mobile">{{ $t('landing.vertical.section_one.content') }}</p>
131131
</div>
132132
<div class="px-6">
133-
<p class="subtitle has-text-weight-bold">
133+
<p class="subtitle is-size-6-mobile has-text-weight-bold">
134134
{{ $t('landing.vertical.section_two.title') }}
135135
</p>
136-
<p class="subtitle">{{ $t('landing.vertical.section_two.content') }}</p>
136+
<p class="subtitle is-size-6-mobile">{{ $t('landing.vertical.section_two.content') }}</p>
137137
</div>
138138
<div class="px-6">
139-
<p class="subtitle has-text-weight-bold">
139+
<p class="subtitle is-size-6-mobile has-text-weight-bold">
140140
{{ $t('landing.vertical.section_three.title') }}
141141
</p>
142-
<p class="subtitle">{{ $t('landing.vertical.section_three.content') }}</p>
142+
<p class="subtitle is-size-6-mobile">
143+
{{ $t('landing.vertical.section_three.content') }}
144+
</p>
143145
</div>
144146
</div>
145147
</div>
@@ -170,7 +172,7 @@ const sourcesStore = useSourcesStore();
170172
}
171173
172174
.sources-table {
173-
width: 100%;
175+
width: 90%;
174176
}
175177
176178
.wrapper {
@@ -186,6 +188,13 @@ const sourcesStore = useSourcesStore();
186188
.partnership {
187189
width: 45%;
188190
margin: auto;
191+
text-align: justify;
192+
}
193+
194+
.logos {
195+
display: flex;
196+
justify-content: space-between;
197+
align-items: center;
189198
}
190199
191200
.partner-logo {
@@ -196,6 +205,7 @@ const sourcesStore = useSourcesStore();
196205
.product-description {
197206
width: 60%;
198207
margin: auto;
208+
text-align: center;
199209
}
200210
201211
.section {
@@ -215,4 +225,50 @@ const sourcesStore = useSourcesStore();
215225
.is-local-size-1 {
216226
font-size: 4rem;
217227
}
228+
229+
@media screen and (max-width: 767px) {
230+
.presentation {
231+
width: 90%;
232+
}
233+
234+
.partner-logo {
235+
margin: auto;
236+
height: 2.5rem;
237+
}
238+
239+
.logos {
240+
flex-wrap: wrap;
241+
gap: 2rem;
242+
justify-content: center;
243+
}
244+
245+
.partnership {
246+
width: 90%;
247+
margin: auto;
248+
text-align: justify;
249+
}
250+
251+
.product-description {
252+
width: 90%;
253+
text-align: justify;
254+
}
255+
256+
.section.mt-6 {
257+
--bulma-section-padding: 1.5rem;
258+
margin-top: 1rem !important;
259+
}
260+
261+
.section {
262+
--bulma-section-padding: 1.5rem;
263+
}
264+
265+
.px-6 {
266+
padding-left: 1.5rem !important;
267+
padding-right: 1.5rem !important;
268+
}
269+
270+
.description {
271+
width: 100%;
272+
}
273+
}
218274
</style>

0 commit comments

Comments
 (0)