From 357a6b39c30f052c9ad031b66ce5e0b52521213f Mon Sep 17 00:00:00 2001 From: Remi PLANEL <rplanel@pasteur.fr> Date: Wed, 10 May 2023 18:17:06 +0200 Subject: [PATCH] remove v-container --- pages/[...slug].vue | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/pages/[...slug].vue b/pages/[...slug].vue index 124bfc4b..d77e6e39 100644 --- a/pages/[...slug].vue +++ b/pages/[...slug].vue @@ -1,12 +1,10 @@ <template> - <v-container> - <v-row justify="center"> - <v-col cols="auto"> - <v-card flat color="transparent" max-width="1280"> - <v-card-text> - <ContentDoc /> - </v-card-text> </v-card - ></v-col> - </v-row> - </v-container> + <v-row justify="center"> + <v-col cols="auto"> + <v-card flat color="transparent" max-width="1280"> + <v-card-text> + <ContentDoc /> + </v-card-text> </v-card + ></v-col> + </v-row> </template> -- GitLab