fix: release build

This commit is contained in:
Daan Wijns 2022-07-04 13:53:23 +02:00
parent cc8b303a77
commit 7a74275a4d
8 changed files with 16 additions and 27 deletions

View file

@ -77,7 +77,7 @@ export default {
<style lang="scss" scoped>
// Reversed input variant
::v-deep .v-input--reverse .v-input__slot {
:deep(.v-input--reverse .v-input__slot) {
@import "../../../styles/styles";
@include reverse-switch;
}

View file

@ -92,7 +92,7 @@ export default {
color: var(--search) !important;
}
// Reversed input variant
::v-deep .v-input--reverse .v-input__slot {
:deep(.v-input--reverse .v-input__slot) {
@import "src/styles/styles.scss";
@include reverse-switch;
}

View file

@ -179,11 +179,3 @@ export default {
}
}
</script>
//
<style lang="scss" scoped>
// ::v-deep .v-select .v-select__selection {
// padding: 0;
// }
//
</style>

View file

@ -61,12 +61,12 @@ export default {
</script>
<style lang="scss" scoped>
::v-deep .v-select .v-select__selection {
:deep(.v-select .v-select__selection) {
padding-top: 10px !important;
padding-bottom: 10px !important;
}
// Reversed input variant
::v-deep .v-input--reverse .v-input__slot {
:deep(.v-input--reverse .v-input__slot) {
@import "src/styles/styles.scss";
@include reverse-switch;
}

View file

@ -319,13 +319,11 @@ export default {
</script>
<style lang="scss" scoped>
::v-deep .v-data-table thead th,
::v-deep .v-data-table tbody td {
:deep(.v-data-table thead th),
:deep(.v-data-table tbody td) {
padding: 0 !important;
height: 3em;
white-space: nowrap;
&:first-child {
padding: 0 0 0 8px !important;
}

View file

@ -126,12 +126,12 @@ export default {
</script>
<style scoped>
::v-deep .ip {
:deep(.ip) {
display: flex;
align-items: center;
}
::v-deep .ip .country-flag {
:deep(.ip .country-flag) {
width: 1.5em;
margin-right: 0.5em;
}
@ -139,8 +139,8 @@ export default {
<style lang="scss" scoped>
@import "~@/styles/colors.scss";
::v-deep .v-data-table thead th,
::v-deep .v-data-table tbody td {
:deep(.v-data-table thead th),
:deep(.v-data-table tbody td) {
padding: 0 3px !important;
height: auto;
@ -151,10 +151,10 @@ export default {
padding-right: 8px !important;
}
}
::v-deep .v-data-table-header {
:deep(.v-data-table-header) {
white-space: nowrap;
}
::v-deep td {
:deep(td) {
white-space: nowrap;
}
</style>

View file

@ -181,8 +181,8 @@ export default {
<style lang="scss" scoped>
@import "~@/styles/colors.scss";
::v-deep .v-data-table thead th,
::v-deep .v-data-table tbody td {
:deep(.v-data-table thead th),
:deep(.v-data-table tbody td) {
padding: 0 3px !important;
height: auto;
@ -193,10 +193,10 @@ export default {
padding-right: 8px !important;
}
}
::v-deep .v-data-table-header {
:deep(.v-data-table-header) {
white-space: nowrap;
}
::v-deep td {
:deep(td) {
white-space: nowrap;
}
</style>

View file

@ -3,7 +3,6 @@ import App from '@/App.vue'
import '@/registerServiceWorker'
import router from '@/router'
import store from '@/store'
import '@babel/polyfill'
import vuetify from './plugins/vuetify'
import 'typeface-roboto'
import 'typeface-roboto-mono'