From ee4ebc271ff2255c8093520960e3f18ad0afbbfd Mon Sep 17 00:00:00 2001 From: 0x1eef <0x1eef@protonmail.com> Date: Tue, 26 Dec 2023 01:06:38 -0300 Subject: [PATCH] frontend: add src/css/vendor/ --- twenty-frontend/src/css/main.scss | 4 ++-- twenty-frontend/src/css/{ => vendor}/_animations.scss | 0 twenty-frontend/src/css/{ => vendor}/_forms.scss | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename twenty-frontend/src/css/{ => vendor}/_animations.scss (100%) rename twenty-frontend/src/css/{ => vendor}/_forms.scss (100%) diff --git a/twenty-frontend/src/css/main.scss b/twenty-frontend/src/css/main.scss index f3062fb..4ed3102 100644 --- a/twenty-frontend/src/css/main.scss +++ b/twenty-frontend/src/css/main.scss @@ -1,9 +1,9 @@ @import "fonts"; @import "colors"; -@import "forms"; @import "tables"; @import "items"; -@import "animations"; +@import "vendor/forms"; +@import "vendor/animations"; *, *:before, *:after { box-sizing: border-box; diff --git a/twenty-frontend/src/css/_animations.scss b/twenty-frontend/src/css/vendor/_animations.scss similarity index 100% rename from twenty-frontend/src/css/_animations.scss rename to twenty-frontend/src/css/vendor/_animations.scss diff --git a/twenty-frontend/src/css/_forms.scss b/twenty-frontend/src/css/vendor/_forms.scss similarity index 100% rename from twenty-frontend/src/css/_forms.scss rename to twenty-frontend/src/css/vendor/_forms.scss