Use SASS module system
Get rid of all the SASS warnings/errors when building.
This commit is contained in:
parent
b2f4f1d492
commit
b1d47748c8
120 changed files with 189 additions and 157 deletions
|
|
@ -119,8 +119,9 @@ export default {
|
|||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@import "@/assets/css/chat.scss";
|
||||
@import 'vuetify/settings';
|
||||
@use "@/assets/css/chat.scss" as *;
|
||||
@use "vuetify/settings" as *;
|
||||
@use "sass:map";
|
||||
|
||||
.profile-info-popup {
|
||||
font-family: "Inter", sans-serif !important;
|
||||
|
|
@ -212,11 +213,11 @@ export default {
|
|||
font-size: 10 * $chat-text-size !important;
|
||||
}
|
||||
|
||||
@media #{map-get($display-breakpoints, 'sm-and-up')} {
|
||||
@media #{map.get($display-breakpoints, 'sm-and-up')} {
|
||||
width: 70%;
|
||||
}
|
||||
|
||||
@media #{map-get($display-breakpoints, 'lg-and-up')} {
|
||||
@media #{map.get($display-breakpoints, 'lg-and-up')} {
|
||||
overflow: unset;
|
||||
width: $main-desktop-width;
|
||||
position: absolute;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue