From 257691d208e910fd7dbc3ee23848c29b11276c41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Pe=CC=81ault?= Date: Tue, 12 Jul 2022 12:07:26 +0200 Subject: [PATCH] Fix a hell of a stupid SCSS issue that blocked everything?! --- src/style/pages/_explore.scss | 9 ++++----- vite.config.js | 2 +- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/src/style/pages/_explore.scss b/src/style/pages/_explore.scss index e635640..cb4a031 100644 --- a/src/style/pages/_explore.scss +++ b/src/style/pages/_explore.scss @@ -1,10 +1,9 @@ // Explore Page :global(.explore) { overflow: hidden; - - &__locations { - @include bp (sm, max) { - margin-top: 72px; - } +} +:global(.explore__locations) { + @include bp (sm, max) { + margin-top: 72px; } } \ No newline at end of file diff --git a/vite.config.js b/vite.config.js index e23df9e..ddebfdf 100644 --- a/vite.config.js +++ b/vite.config.js @@ -1,4 +1,4 @@ -import { sveltekit } from '@sveltejs/kit/vite'; +import { sveltekit } from '@sveltejs/kit/vite' import { scssImports } from './svelte.config.js' /** @type {import('vite').UserConfig} */