Skip to content

Commit e341763

Browse files
vuetify defaults components params
1 parent be4c4b5 commit e341763

File tree

9 files changed

+8
-51
lines changed

9 files changed

+8
-51
lines changed

components/Errors/Banner.vue

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,3 @@
5050
window.location.reload()
5151
}
5252
</script>
53-
54-
<style scoped>
55-
.v-btn {
56-
text-transform: unset !important;
57-
}
58-
</style>

components/ExtensionSelector.vue

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<v-row
44
v-for="item in geode_objects_and_output_extensions"
55
:key="item.geode_object"
6-
class="justify - left"
6+
class="justify-left"
77
>
8-
<v-card class="card ma-2 pa-2" elevation="5" width="100%">
8+
<v-card class="card ma-2 pa-2" width="100%">
99
<v-tooltip :text="`Export as a ${item.geode_object}`" location="bottom">
1010
<template v-slot:activator="{ props }">
1111
<v-card-title v-bind="props">
@@ -25,7 +25,6 @@
2525
class="card ma-2"
2626
color="primary"
2727
hover
28-
elevation="5"
2928
@click="set_variables(item.geode_object, output_extension)"
3029
>
3130
<v-card-title align="center">
@@ -78,9 +77,3 @@
7877
get_output_file_extensions()
7978
})
8079
</script>
81-
82-
<style scoped>
83-
.card {
84-
border-radius: 15px;
85-
}
86-
</style>

components/FileSelector.vue

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,3 @@
4949
get_allowed_files()
5050
})
5151
</script>
52-
53-
<style scoped>
54-
.v-btn {
55-
text-transform: unset !important;
56-
}
57-
</style>

components/FileUploader.vue

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,3 @@
6969
files_uploaded.value = false
7070
})
7171
</script>
72-
73-
<style scoped>
74-
.v-btn {
75-
text-transform: unset !important;
76-
}
77-
</style>

components/Header.vue

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,7 @@
66
<v-col>
77
<v-row class="justify-center">
88
<v-col v-for="(card, i) in cards_list" :key="i" cols="11" md="5">
9-
<v-card
10-
class="card"
11-
hover
12-
elevation="5"
13-
:href="card.href"
14-
rounded
15-
target="_blank"
16-
>
9+
<v-card class="card" hover :href="card.href" rounded target="_blank">
1710
<v-card-title
1811
primary-title
1912
class="justify-center text-h6"

components/Loading.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<v-row justify="center">
33
<v-col cols="12" class="ma-3">
4-
<v-card class="card" loading elevation="5">
4+
<v-card loading>
55
<v-card-title class="text-center">
66
Cloud instance is starting...
77
</v-card-title>

components/MissingFilesSelector.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444

4545
<script setup>
4646
const stepper_tree = inject("stepper_tree")
47-
const { route_prefix } = stepper_tree
4847
4948
const props = defineProps({
5049
multiple: { type: Boolean, required: true },

components/ObjectSelector.vue

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<FetchingData v-if="loading" />
33
<v-row v-else-if="allowed_objects.length" class="justify-left">
44
<v-col v-for="object in allowed_objects" :key="object" cols="2" md="2">
5-
<v-card v-ripple class="card ma-2" hover elevation="5" rounded>
5+
<v-card v-ripple class="card ma-2" hover rounded>
66
<v-img
77
:src="geode_objects[object].image"
88
cover
@@ -15,7 +15,7 @@
1515
</v-col>
1616
</v-row>
1717
<v-row v-else class="pa-5">
18-
<v-card class="card" variant="tonal" elevation="5" rounded>
18+
<v-card class="card" variant="tonal" rounded>
1919
<v-card-text>
2020
This file format isn't supported! Please check the
2121
<a
@@ -71,9 +71,3 @@
7171
get_allowed_objects()
7272
})
7373
</script>
74-
75-
<style scoped>
76-
.card {
77-
border-radius: 15px;
78-
}
79-
</style>

components/Step.vue

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<v-card class="pa-5 card" elevation="5">
2+
<v-card class="pa-5">
33
<v-row align="center" @click="set_current_step(step_index)">
44
<v-col cols="auto">
55
<v-icon
@@ -60,11 +60,7 @@
6060
}
6161
</script>
6262

63-
<style>
64-
.card {
65-
border-radius: 15px;
66-
}
67-
63+
<style scoped>
6864
.slide-fade-enter-active {
6965
transition: all 0.5s ease-out;
7066
}

0 commit comments

Comments
 (0)