Explorar el Código

:fire: removing postcss

tags/0.0.1
J hace 3 años
padre
commit
a7130ba5e3

+ 11
- 30
frontend/src/App.vue Ver fichero

@@ -1,6 +1,16 @@
1 1
 <template lang="pug">
2 2
 w-app
3
-    w-button My Button
3
+    w-badge
4
+        template(#badge) 3
5
+            w-button(color="primary")
6
+                w-icon(class="mr1") mdi mdi-email
7
+                    Emails
8
+    w-flex.my12(:gap="3" align-center wrap)
9
+        | Show menu on:
10
+        w-menu
11
+            template(#activator="{ on }")
12
+                w-button(v-on="on") Show menu
13
+            | Menu content
4 14
     SideBar(
5 15
         v-if="showSidebar"
6 16
         :pid="getPid"
@@ -15,8 +25,6 @@ w-app
15 25
 </template>
16 26
 
17 27
 <script>
18
-import * as sss from '@/sss/import.css'
19
-
20 28
 import SideBar from './components/SideBar.vue'
21 29
 
22 30
 import { Chatter, currentProfile, StonkAlert } from './services'
@@ -76,30 +84,3 @@ export default {
76 84
     },
77 85
 }
78 86
 </script>
79
-
80
-<style lang="postcss">
81
-/* prettier-ignore */
82
-@import './sss/theme.sss'
83
-
84
-#app
85
-    height: 100%
86
-    flex-direction: row
87
-    .w-app
88
-        display: flex
89
-        text-align: center
90
-        color: $primary
91
-        font-family: $sans
92
-        background-color: $dark
93
-        overflow-x: hidden
94
-        height: 100%
95
-        > main
96
-            position: relative
97
-            height: 100%
98
-            > header
99
-                h2
100
-                    font-size: $ms-1
101
-            > article
102
-                height: 100%
103
-                width: 100%
104
-                flex-direction: column
105
-</style>

+ 4
- 18
frontend/src/components/MainNav.vue Ver fichero

@@ -1,9 +1,9 @@
1 1
 <template lang="pug">
2
-nav#main-header.w-full.z-top.f-row.around.p-2
2
+nav#main-header
3 3
     button(@click="$emit('show-sidebar')") toggle sidebar
4
-    router-link.header__icon.mobile--only(:to="`/matches`") matches
5
-    router-link.header__icon(to='/') home
6
-    router-link.header__icon.mobile--only(:to="`/survey`") survey
4
+    router-link(:to="`/matches`") matches
5
+    router-link(to='/') home
6
+    router-link(:to="`/survey`") survey
7 7
 </template>
8 8
 
9 9
 <script>
@@ -11,17 +11,3 @@ export default {
11 11
     name: 'MainNav',
12 12
 }
13 13
 </script>
14
-
15
-<style lang="postcss">
16
-/* prettier-ignore */
17
-#main-header
18
-  position: absolute
19
-  bottom: 1vh
20
-  right: 0
21
-
22
-
23
-@media only screen and (min-width: 768px)
24
-  .mobile--only
25
-    /* display: none */
26
-    display: block
27
-</style>

+ 4
- 46
frontend/src/components/Messages.vue Ver fichero

@@ -7,11 +7,10 @@
7 7
         :key='profile.profile_id' 
8 8
         :class="[pid == profile.profile_id ? 'active' : '', 'sidebar__message', 'f-col', 'start']"
9 9
     )
10
-    .f-row.start
11
-        img(:src='profile.avatar')
12
-        .message__right.f-col
13
-            h4.message__name {{ profile.name }}
14
-            p.message__content {{ profile.metadata.rawMetadata || &quot;Hello I&apos;m using tinder!&quot; }}
10
+    img(:src='profile.avatar')
11
+    .message__right
12
+        h4.message__name {{ profile.name }}
13
+        p.message__content {{ profile.metadata.rawMetadata || &quot;Hello I&apos;m using tinder!&quot; }}
15 14
 </template>
16 15
 
17 16
 <script>
@@ -28,44 +27,3 @@ export default {
28 27
     },
29 28
 }
30 29
 </script>
31
-
32
-<style lang="postcss">
33
-/* prettier-ignore */
34
-.sidebar
35
-    &--messages
36
-        padding: 20px 10px
37
-        /* overflow-y: scroll */
38
-        text-align: left
39
-        a
40
-            color: black
41
-            text-decoration: none
42
-            &:hover
43
-                background: #f9f9ff
44
-                transition: 0.5s
45
-            &.active
46
-                background: #ececff
47
-                transition: 0.5s
48
-    &__message
49
-        display: flex
50
-        align-items: center
51
-        margin: 20px 0
52
-        img
53
-            object-fit: cover
54
-            width: 70px
55
-            height: 70px
56
-            border-radius: 50%
57
-
58
-.message
59
-    &__title
60
-        color: #fd5068
61
-        text-transform: uppercase
62
-        margin-bottom: 10px
63
-    &__right
64
-        margin-left: 10px
65
-    &__name
66
-        padding-top: 5px
67
-        font-weight: 600
68
-    &__content
69
-        padding-top: 10px
70
-        line-height: 1em
71
-</style>

+ 14
- 43
frontend/src/components/ProfileCardList.vue Ver fichero

@@ -1,5 +1,5 @@
1 1
 <template lang="pug">
2
-section.profile-card-list.w-full
2
+section.profile-card-list
3 3
     .swipe(
4 4
         v-if="!isGrid"
5 5
         :config="config"
@@ -8,14 +8,14 @@ section.profile-card-list.w-full
8 8
         v-for="(profile, i) in loadedProfiles"
9 9
         :style="{ 'z-index': 1000-i }"
10 10
     )
11
-        .card.b-solid.bg-cover.randomize(
11
+        .card.randomize(
12 12
             :style="{ 'background-image': `url(${profile.avatar})`, 'top': `${randomize(10)}px`, 'right': `${randomize(20)}px`, 'transform': `rotate(${randomize(7)}deg)` }"
13 13
         )
14
-            .card--content.f-col.between
15
-                p(style="color: magenta;").f-grow profile: {{ profile.pid }}
16
-                .card--content--lower.ph-1.w-full.f-col.between
17
-                    h4.w-full.pv-1 {{ profile.name }}
18
-                    nav.swipe_icons.pv-1.w-full.f-grow.f-row
14
+            .card--content
15
+                p(style="color: magenta;") profile: {{ profile.pid }}
16
+                .card--content--lower
17
+                    h4 {{ profile.name }}
18
+                    nav.swipe_icons
19 19
                         //- Accept
20 20
                         button(@click="accept") Accept
21 21
                         button(@click="view(profile.pid)") view
@@ -26,15 +26,15 @@ section.profile-card-list.w-full
26 26
         v-else
27 27
         :key="profile.pid"
28 28
         v-for="(profile, i) in loadedProfiles"
29
-    ).f-row
30
-            .card.b-solid.bg-cover(
29
+    )
30
+            .card.bg-cover(
31 31
                 :style="{ 'background-image': `url(${profile.avatar})` }"
32 32
             )
33
-                .card--content.f-col.between
34
-                    p(style="color: magenta;").f-grow profile: {{ profile.pid }}
35
-                    .card--content--lower.ph-1.w-full.f-col.between
36
-                        h4.w-full.pv-1 {{ profile.name }}
37
-                        nav.swipe_icons.pv-1.w-full.f-grow.f-row
33
+                .card--content
34
+                    p(style="color: magenta;") profile: {{ profile.pid }}
35
+                    .card--content--lower
36
+                        h4 {{ profile.name }}
37
+                        nav.swipe_icons
38 38
                             button(@click="view(profile.pid)") view
39 39
 </template>
40 40
 
@@ -118,32 +118,3 @@ const config = {
118 118
 // Copy profiles so we don't mutate the original
119 119
 const loadedProfiles = [...props.profiles]
120 120
 </script>
121
-
122
-<style lang="postcss">
123
-/* prettier-ignore */
124
-.profile-card-list
125
-    display: flex
126
-    justify-content: center
127
-
128
-.swipe
129
-    position: absolute
130
-.randomize
131
-    position: relative
132
-
133
-.card
134
-    position: relative
135
-    background-color: #fff
136
-    height: 60vw
137
-    width: 40vw
138
-    max-height: 600px
139
-    max-width: 400px
140
-    background-position: center
141
-    &--content
142
-        width: 100%
143
-        height: 100%
144
-        font-size: 3vw
145
-        &--lower
146
-            background-color: goldenrod
147
-            nav > button
148
-                font-size: 2vw
149
-</style>

+ 3
- 21
frontend/src/components/SideBar.vue Ver fichero

@@ -1,12 +1,10 @@
1 1
 <template lang="pug">
2
-aside.sidebar.p-1.f-col.z-top
3
-    .temp-control-box.f-row.start.center
2
+aside.sidebar
3
+    .temp-control-box
4 4
         input(v-model="switchToPID")
5
-        button(@click="$emit('updatePid', switchToPID)").t-up.p-0 switch profile
5
+        button(@click="$emit('updatePid', switchToPID)") switch profile
6 6
     
7 7
     Messages(:matches="matches" :pid="pid")
8
-    
9
-    .spacer.f-grow
10 8
 </template>
11 9
 
12 10
 <script>
@@ -39,19 +37,3 @@ export default {
39 37
     },
40 38
 }
41 39
 </script>
42
-
43
-<style lang="postcss">
44
-/* prettier-ignore */
45
-aside.sidebar
46
-    background-color: yellow
47
-    height: 100vh
48
-    position: fixed
49
-    h3
50
-        padding: 2vh
51
-
52
-.search
53
-    display: flex
54
-    flex-direction: row
55
-    input
56
-        border: 0
57
-</style>

+ 0
- 48
frontend/src/sss/_variables.sss Ver fichero

@@ -1,48 +0,0 @@
1
-@import './partials/_ratios.sss'
2
-
3
-/**
4
-  * Misc
5
-  */
6
-$transition: 300ms
7
-
8
-/**
9
-  * Page
10
-  */
11
-$max-width: 80vw
12
-
13
-
14
-/**
15
-  * Fonts
16
-  */
17
-$sans: 'helvetica', 'calibri', 'sans-serif'
18
-$serif: 'georgia', 'serif'
19
-$mono: 'input', 'consolas','monospace'
20
-
21
-
22
-/**
23
-  * Modular Scale
24
-  */
25
-$base: 0.7em
26
-$scale: $golden
27
-
28
-$ms-0: calc($base)
29
-$ms-1: calc($ms-0 * $scale)
30
-$ms-2: calc($ms-1 * $scale)
31
-$ms-3: calc($ms-2 * $scale)
32
-$ms-4: calc($ms-3 * $scale)
33
-$ms-5: calc($ms-4 * $scale)
34
-$ms-6: calc($ms-5 * $scale)
35
-$ms-7: calc($ms-6 * $scale)
36
-$ms-8: calc($ms-7 * $scale)
37
-$ms-9: calc($ms-8 * $scale)
38
-
39
-/**
40
-  * Color Scale
41
-  */
42
-$cbase: 0.3
43
-$cs-0: calc($cbase)
44
-$cs-1: calc($cs-0 * $scale)
45
-$cs-2: calc($cs-1 * $scale)
46
-$cs-3: calc($cs-2 * $scale)
47
-$cs-4: calc($cs-3 * $scale)
48
-$cs-5: calc($cs-4 * $scale)

+ 0
- 18
frontend/src/sss/card.scss Ver fichero

@@ -1,18 +0,0 @@
1
-$n: 100;
2
-$cardbase: 2px;
3
-$cardtop: -1px;
4
-$index: 9999;
5
-
6
-@for $i from 0 through $n {
7
-  .swipe:nth-child(#{$i}) {
8
-    position: absolute;
9
-    left: calc($cardbase * $i);
10
-    top: calc($cardtop * $i);
11
-    z-index: calc($index - $i);
12
-  }
13
-}
14
-
15
-
16
-.swipe .card h3 {
17
-    color: blue!important;
18
-}

+ 0
- 4
frontend/src/sss/import.css Ver fichero

@@ -1,4 +0,0 @@
1
-@import './partials/_reset.sss'
2
-@import './partials/_ratios.sss'
3
-@import './partials/_helpers.sss'
4
-@import './partials/_typography.sss'

+ 0
- 217
frontend/src/sss/partials/_helpers.sss Ver fichero

@@ -1,217 +0,0 @@
1
-@import '../_variables.sss'
2
-@import '../theme.sss'
3
-
4
-.w
5
-    &-full
6
-        width: 100%
7
-    &-half
8
-        width: 50%
9
-    
10
-/* Flex box  */
11
-%flexy
12
-    display: flex
13
-    justify-content: center
14
-    align-items: center
15
-
16
-.f
17
-    &-row, &-col
18
-        @extend %flexy
19
-        &.start
20
-            align-items: flex-start
21
-            justify-content: flex-start
22
-        &.end 
23
-            align-items: flex-end
24
-            justify-content: flex-end
25
-        &.between
26
-            justify-content: space-between
27
-        &.around
28
-            justify-content: space-around
29
-        &.even
30
-            justify-content: space-evenly
31
-        &.stretch
32
-            align-content: stretch
33
-        &.baseline
34
-            align-items: baseline
35
-        &.center
36
-            align-items: flex-start
37
-            justify-content: flex-start
38
-        &.wrap
39
-            flex-wrap: wrap
40
-    &-row
41
-        flex-direction: row
42
-        &.reverse
43
-            flex-direction: row-reverse
44
-    &-col
45
-        flex-direction: column
46
-        &.reverse
47
-            flex-direction: column-reverse
48
-    &-grow
49
-        flex-grow: 1
50
-
51
-/* Borders */
52
-.b
53
-    &-none
54
-        border: none
55
-    &-solid
56
-        border: 1px solid $dark
57
-    &-dot
58
-        border: 1px dotted $dark
59
-    &-solid, &-dot
60
-        &.rounded
61
-            border-radius: $ms-0
62
-        &.invert
63
-            border-color: $light
64
-
65
-/* Backgrounds */
66
-.bg
67
-    &-none
68
-        background-color: none
69
-    &-primary
70
-        background-color: $primary
71
-    &-dark
72
-        background-color: $dark
73
-    &-light
74
-        background-color: $light
75
-    &-cover
76
-        background-size: cover
77
-    &-contain
78
-        background-size: contain
79
-    &-repeat
80
-        background-repeat: repeat
81
-
82
-/* Colors */
83
-.primary
84
-    color: $primary
85
-.dark
86
-    color: $dark
87
-.light
88
-    color: $light
89
-
90
-/* Padding */
91
-.p
92
-    &-none
93
-        padding: none
94
-    &-0
95
-        padding: $ms-0
96
-    &-1
97
-        padding: $ms-1
98
-    &-2
99
-        padding: $ms-2
100
-    &h
101
-        &-0
102
-            padding: 0 $ms-0
103
-        &-1
104
-            padding: 0 $ms-1
105
-        &-2
106
-            padding: 0 $ms-2
107
-    &v
108
-        &-0
109
-            padding: $ms-0 0
110
-        &-1
111
-            padding: $ms-1 0
112
-        &-2
113
-            padding: $ms-2 0
114
-    &t
115
-        &-0
116
-            padding-top: $ms-0
117
-        &-1
118
-            padding-top: $ms-1
119
-        &-2
120
-            padding-top: $ms-2
121
-    &b
122
-        &-0
123
-            padding-bottom: $ms-0
124
-        &-1
125
-            padding-bottom: $ms-1
126
-        &-2
127
-            padding-bottom: $ms-2
128
-    &l
129
-        &-0
130
-            padding-left: $ms-0
131
-        &-1
132
-            padding-left: $ms-1
133
-        &-2
134
-            padding-left: $ms-2
135
-    &r
136
-        &-0
137
-            padding-right: $ms-0
138
-        &-1
139
-            padding-right: $ms-1
140
-        &-2
141
-            padding-right: $ms-2
142
-
143
-/* Margin */
144
-.m
145
-    &-none
146
-        margin: none
147
-    &-0
148
-        margin: $ms-0
149
-    &-1
150
-        margin: $ms-1
151
-    &-2
152
-        margin: $ms-2
153
-    &h
154
-        &-0
155
-            margin: 0 $ms-0
156
-        &-1
157
-            margin: 0 $ms-1
158
-        &-2
159
-            margin: 0 $ms-2
160
-    &v
161
-        &-0
162
-            margin: $ms-0 0
163
-        &-1
164
-            margin: $ms-1 0
165
-        &-2
166
-            margin: $ms-2 0
167
-    &t
168
-        &-0
169
-            margin-top: $ms-0
170
-        &-1
171
-            margin-top: $ms-1
172
-        &-2
173
-            margin-top: $ms-2
174
-    &b
175
-        &-0
176
-            margin-bottom: $ms-0
177
-        &-1
178
-            margin-bottom: $ms-1
179
-        &-2
180
-            margin-bottom: $ms-2
181
-    &l
182
-        &-0
183
-            margin-left: $ms-0
184
-        &-1
185
-            margin-left: $ms-1
186
-        &-2
187
-            margin-left: $ms-2
188
-    &r
189
-        &-0
190
-            margin-right: $ms-0
191
-        &-1
192
-            margin-right: $ms-1
193
-        &-2
194
-            margin-right: $ms-2
195
-
196
-.z
197
-    &-bottom
198
-        position: relative
199
-        z-index: -1
200
-    &-10
201
-        position: relative
202
-        z-index: 10
203
-    &-20
204
-        position: relative
205
-        z-index: 20
206
-    &-30
207
-        position: relative
208
-        z-index: 30
209
-    &-40
210
-        position: relative
211
-        z-index: 40
212
-    &-50
213
-        position: relative
214
-        z-index: 50
215
-    &-top
216
-        position: relative
217
-        z-index: 10001

+ 0
- 13
frontend/src/sss/partials/_ratios.sss Ver fichero

@@ -1,13 +0,0 @@
1
-$minor-second: 1.067
2
-$major-second: 1.125
3
-$minor-third: 1.2
4
-$major-third: 1.25
5
-$perfect-fourth: 1.333
6
-$augmented-fourth: 1.414
7
-$perfect-fifth: 1.5
8
-$minor-sixth: 1.6
9
-$golden: 1.618
10
-$major-sixth: 1.667
11
-$minor-seventh: 1.778
12
-$major-seventh: 1.875
13
-$octave: 2

+ 0
- 40
frontend/src/sss/partials/_reset.sss Ver fichero

@@ -1,40 +0,0 @@
1
-@import '../_variables.sss'
2
-@import '../theme.sss'
3
-
4
-*
5
-    margin: 0
6
-    padding: 0
7
-    box-sizing: border-box
8
-    &:before, &:after
9
-        background-repeat: no-repeat
10
-        box-sizing: inherit
11
-    $:focus
12
-        outline: none !important
13
-
14
-::before, ::after
15
-    text-decoration: inherit
16
-    vertical-align: inherit
17
-
18
-html
19
-    cursor: default
20
-    font-family: system-ui
21
-    line-height: $ms-0
22
-    tab-size: 4
23
-
24
-body
25
-    margin: 0
26
-    font-size: $ms-1
27
-    font-family: $sans
28
-
29
-nav
30
-    ol, ul
31
-        list-style: none
32
-
33
-// Good for SPAs
34
-html, body
35
-    height: 100%
36
-
37
-button, input, select, textarea
38
-    font-family: inherit
39
-    font-size: inherit
40
-    line-height: inherit

+ 0
- 43
frontend/src/sss/partials/_typography.sss Ver fichero

@@ -1,43 +0,0 @@
1
-@import '../_variables.sss'
2
-@import '../theme.sss'
3
-
4
-h1
5
-    font-size: $ms-5
6
-    line-height: $ms-5
7
-h2
8
-    font-size: $ms-3
9
-    line-height: $ms-3
10
-h3
11
-    font-size: $ms-2
12
-    line-height: $ms-2
13
-h4
14
-    font-size: $ms-1
15
-    line-height: $ms-2
16
-p
17
-    font-size: $ms-1
18
-    line-height: $ms-2
19
-
20
-.t
21
-    &-center
22
-        width: 100%
23
-        text-align: center
24
-    &-right
25
-        width: 100%
26
-        text-align: right
27
-    &-left
28
-        width: 100%
29
-        text-align: left
30
-    &-up
31
-        text-transform: uppercase
32
-    &-cap
33
-        text-transform: capitalize
34
-    &-sans
35
-        font-family: $sans
36
-    &-serif
37
-        font-family: $serif
38
-    &-mono
39
-        font-family: $mono
40
-
41
-a
42
-    &:hover
43
-        cursor: pointer

+ 0
- 16
frontend/src/sss/theme.sss Ver fichero

@@ -1,16 +0,0 @@
1
-@import './_variables.sss'
2
-
3
-/**
4
- * Colors
5
- */
6
-$hue: 50
7
-$bg: calc($hue * $cs-5)
8
-$bright: 70%
9
-$opacity: 1
10
-
11
-$primary: hsla($hue, 80%, calc($bright * $cs-5), $opacity)
12
-$secondary: hsla($bg, 20%, calc($bright * $cs-0), $opacity)
13
-$hilite: hsla($hue, 80%, calc($bright * $cs-0), $opacity)
14
-
15
-$light: hsla(100, 100%, calc($bright * $cs-0), $opacity)
16
-$dark: hsla(001, 0%, 5%, $opacity)

+ 2
- 21
frontend/src/views/HomeView.vue Ver fichero

@@ -1,12 +1,8 @@
1 1
 <template lang="pug">
2
-main.view--home.f-col.start.w-full
2
+main.view--home
3 3
     header
4 4
         h2 home - profile: {{ pid }}
5
-        w-badge
6
-            template(#badge) 3
7
-            w-button(color="primary")
8
-                w-icon(class="mr1") mdi mdi-email
9
-                    Emails
5
+        
10 6
     article(v-if="cards.length && !loading")
11 7
         ProfileCardList(:profiles="cards" :pid="pid" @reload="getCards")
12 8
 
@@ -56,18 +52,3 @@ export default {
56 52
     },
57 53
 }
58 54
 </script>
59
-
60
-<style lang="postcss">
61
-/* prettier-ignore */
62
-main
63
-    position: relative
64
-    height: 100%
65
-    > article
66
-        height: 100%
67
-        width: 100%
68
-        flex-direction: column
69
-
70
-    input, button
71
-        position: relative
72
-        z-index: 1000
73
-</style>

+ 0
- 4
frontend/src/views/LoginView.vue Ver fichero

@@ -44,7 +44,3 @@ export default {
44 44
     },
45 45
 }
46 46
 </script>
47
-
48
-<style lang="postcss">
49
-/* prettier-ignore */
50
-</style>

+ 0
- 7
frontend/src/views/MatchesView.vue Ver fichero

@@ -52,10 +52,3 @@ export default {
52 52
     },
53 53
 }
54 54
 </script>
55
-
56
-<style lang="postcss">
57
-/* prettier-ignore */
58
-.row
59
-    display: flex
60
-    flex-direction: row
61
-</style>

+ 0
- 4
frontend/src/views/ProfileView.vue Ver fichero

@@ -60,7 +60,3 @@ export default {
60 60
     },
61 61
 }
62 62
 </script>
63
-
64
-<style lang="postcss">
65
-/* prettier-ignore */
66
-</style>

+ 0
- 73
frontend/src/views/SurveyView.vue Ver fichero

@@ -264,76 +264,3 @@ export default {
264 264
     },
265 265
 }
266 266
 </script>
267
-
268
-<style lang="postcss">
269
-/* prettier-ignore */
270
-.slide-up
271
-    &-leave, &-enter
272
-        &-active
273
-            transition-delay: 500ms
274
-            transition-property: opacity, background-color, font-size, transform, color
275
-            transition-timing-function: cubic-bezier(1, 0.3, 0.5, 1)
276
-            transition-duration: 300ms
277
-    &-enter-from, &-leave-to
278
-        opacity: 0
279
-
280
-.fade
281
-    animation: fadeIn 1200ms ease-in
282
-
283
-@keyframes fadeIn
284
-    0%
285
-        opacity: 0
286
-    50%
287
-        opacity: 0.5
288
-    100%
289
-        opacity:1
290
-
291
-h1
292
-    color: white
293
-
294
-main
295
-    padding: 5vh
296
-    display: flex
297
-    header
298
-        p
299
-            color: #666
300
-            line-height: 1.3em
301
-        color: #ccc
302
-        font-style: italic
303
-        text-align: left
304
-
305
-article
306
-    height: 100%
307
-    width: 100%
308
-    flex-direction: column
309
-    ul
310
-        height: 100%
311
-        list-style: none
312
-        button
313
-            padding: 1em
314
-        p
315
-            padding: 1em
316
-            color: white
317
-.form
318
-    border: 1px solid #fff
319
-    width: 100%
320
-    header, footer, ul
321
-        padding: 1vh
322
-    ul
323
-        display: flex
324
-        width: 100%
325
-        > li
326
-            flex-direction: column
327
-            border: 0px solid yellow
328
-            width: 100%
329
-            padding: 0
330
-            text-align: left
331
-            label
332
-                margin-right: 1vh
333
-            > h3
334
-                text-transform: capitalize
335
-                padding: 1vh 0
336
-            > div > span
337
-                display: block
338
-                text-align: center
339
-</style>

+ 0
- 7
frontend/vite.config.js Ver fichero

@@ -9,11 +9,4 @@ export default defineConfig({
9 9
             '@': require('path').resolve(__dirname, 'src'),
10 10
         },
11 11
     },
12
-    css: {
13
-        preprocessorOptions: {
14
-            scss: {
15
-                additionalData: '$use-layout-classes: false;@import "/src/../node_modules/wave-ui/src/wave-ui/scss/_variables.scss";',
16
-            },
17
-        },
18
-    },
19 12
 })

Loading…
Cancelar
Guardar