From b3ae3be8a68f5f135e0862c4f4010c57e37229df Mon Sep 17 00:00:00 2001 From: Antoine M Date: Mon, 20 Nov 2023 14:11:59 +0100 Subject: [PATCH] renaming publications gris array for publication page --- .../components/publications-grid-array.css | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 resources/css/components/publications-grid-array.css diff --git a/resources/css/components/publications-grid-array.css b/resources/css/components/publications-grid-array.css new file mode 100644 index 0000000..f0a1808 --- /dev/null +++ b/resources/css/components/publications-grid-array.css @@ -0,0 +1,30 @@ +.publications-grid { + @apply max-w-screen-xl mx-auto py-12 mb-12; + + &__row { + @apply grid grid-cols-11 gap-8; + align-items: center; + } + &__row + &__row { + @apply mt-8 border-t border-gray pt-8; + } + &__cover { + @apply w-20 rounded-lg col-span-1; + } + &__icon { + @apply w-20 rounded-2xl col-span-1; + } + &__title { + @apply col-span-4 font-bold; + } + &__thematique { + @apply col-span-2 text-center w-fit; + place-self: center; + } + &__edition { + @apply col-span-2 text-center; + } + &__button { + @apply col-span-2 flex justify-end; + } +}