@Samarium
Now I don't have an error in the console 👌
but I may not get it how it works
I have {ROOT}/theme.scss
$input-height: 100px;
$input-background: url('@/modules/config/assets/input.png');
and modules/title-screen/src/client/gui/connect.vue
<style lang="scss">
$input-height: 40px;
$input-background: black;
input {
background: $input-background;
background-size: 100% 100%;
height: $input-height;
}
result:
Should I have input with height 100px
and image as background? or it is not how it works?