Skip to content

Commit 907c0dd

Browse files
committed
unused styles
1 parent 3a7c19e commit 907c0dd

File tree

5 files changed

+4
-234
lines changed

5 files changed

+4
-234
lines changed

src/components/ nullResponsive.vue

+3-3
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,13 @@ onMounted(() => {
6969
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
7070
Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
7171
color: v-bind("props.config.text_color");
72-
@include media("<=tablet") {
72+
@media screen and (max-width:868px) {
7373
font-size: 2.6em;
7474
}
75-
@include media("<=phone-tab") {
75+
@media screen and (max-width:600px) {
7676
font-size: 2.2em;
7777
}
78-
@include media("<=phone") {
78+
@media screen and (max-width:480px){
7979
font-size: 1.5em;
8080
}
8181
}

src/style/_responsive.scss

-228
This file was deleted.

tsconfig.config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
"composite": true,
66
"types": ["node"]
77
}
8-
}
8+
}

tsconfig.json

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
44
"compilerOptions": {
55
"baseUrl": ".",
6-
"types": ["node"],
76
"paths": {
87
"@/*": ["./src/*"]
98
}

vite.config.ts

-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ export default defineConfig({
3535
scss:{
3636
additionalData: `
3737
@import "./src/style/_mixins.scss";
38-
@import "./src/style/_responsive.scss";
3938
4039
`
4140
}

0 commit comments

Comments
 (0)