|
|
@@ -2,13 +2,13 @@
|
|
|
<AnchoredSection id="about">
|
|
|
<LayoutContainer>
|
|
|
<v-row class="mt-12 center-90">
|
|
|
- <v-col cols="4">
|
|
|
+ <v-col md="4">
|
|
|
<LayoutUISubTitle>
|
|
|
Qui sommes-nous ?
|
|
|
</LayoutUISubTitle>
|
|
|
</v-col>
|
|
|
|
|
|
- <v-col cols="8">
|
|
|
+ <v-col md="8">
|
|
|
<div class="italic-title mr-8">
|
|
|
“Imaginé par des musiciens pour des musiciens, Opentalent se veut être
|
|
|
la référence pour la gestion et la promotion du spectacle vivant sur
|
|
|
@@ -18,11 +18,11 @@
|
|
|
</v-row>
|
|
|
|
|
|
<v-row class="history mb-12">
|
|
|
- <v-col cols="6">
|
|
|
+ <v-col md="6">
|
|
|
<v-img src="/images/about/passion.jpg" cover />
|
|
|
</v-col>
|
|
|
|
|
|
- <v-col cols="6">
|
|
|
+ <v-col md="6">
|
|
|
<h3>
|
|
|
Une histoire de passionnés
|
|
|
</h3>
|
|
|
@@ -94,6 +94,10 @@ import AnchoredSection from "~/components/Layout/AnchoredSection.vue";
|
|
|
width: 400px;
|
|
|
height: 100%;
|
|
|
border-radius: 20px;
|
|
|
+
|
|
|
+ @media (max-width: 600px) {
|
|
|
+ width: 90%;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
h3 {
|
|
|
@@ -112,6 +116,10 @@ import AnchoredSection from "~/components/Layout/AnchoredSection.vue";
|
|
|
margin-bottom: 3rem;
|
|
|
width: 25rem;
|
|
|
text-align: justify;
|
|
|
+
|
|
|
+ @media (max-width: 600px) {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
p {
|
|
|
@@ -121,6 +129,10 @@ import AnchoredSection from "~/components/Layout/AnchoredSection.vue";
|
|
|
line-height: 20px;
|
|
|
width: 30rem;
|
|
|
margin-bottom: 2rem;
|
|
|
+
|
|
|
+ @media (max-width: 600px) {
|
|
|
+ width: 100%;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|