Skip to content

Commit

Permalink
made sure that spectre is only included where nessesary
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm committed Dec 30, 2023
1 parent 2ad75e0 commit f2fce6b
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion webclient/cypress/support/component-index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<title>Components App</title>
<link rel="stylesheet" href="./src/assets/main.scss" />
<link rel="stylesheet" href="./src/assets/spectre-all.scss" />
</head>
<body>
<div data-cy-root></div>
Expand Down
1 change: 0 additions & 1 deletion webclient/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@
<meta property="og:site_name" content="NavigaTUM" />

<link rel="stylesheet" href="./src/assets/main.scss" />
<link rel="stylesheet" href="./src/assets/spectre-all.scss" />

<link rel="icon" href="/favicon.ico" />
<link rel="canonical" href="https://nav.tum.de" />
Expand Down
1 change: 1 addition & 0 deletions webclient/src/pages/index.vue
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<script setup lang="ts">
import "@/assets/spectre-all.scss";
import { setTitle } from "@/composables/common";
import { useFetch } from "@/composables/fetch";
import type { components } from "@/api_types";
Expand Down
1 change: 1 addition & 0 deletions webclient/src/pages/search.vue
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<script setup lang="ts">
import "@/assets/spectre-all.scss";
import { useFetch } from "@/composables/fetch";
import { computed } from "vue";
import { setDescription, setTitle } from "@/composables/common";
Expand Down
1 change: 1 addition & 0 deletions webclient/src/pages/view/[id].vue
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<script setup lang="ts">
import "@/assets/spectre-all.scss";
import ShareButton from "@/components/ShareButton.vue";
import DetailsInteractiveMap from "@/components/DetailsInteractiveMap.vue";
import DetailsRoomOverviewSection from "@/components/DetailsRoomOverviewSection.vue";
Expand Down

0 comments on commit f2fce6b

Please sign in to comment.