Implement product view

This commit is contained in:
inpsyde-maticluznar 2024-10-24 13:54:50 +02:00
parent 1ced06b24e
commit fc51e7f1a3
No known key found for this signature in database
GPG key ID: D005973F231309F6
18 changed files with 444 additions and 52 deletions

View file

@ -6,3 +6,23 @@
letter-spacing: $letter-spacing;
}
}
@mixin hide-input-field(){
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
margin: 0;
opacity: 0;
border-radius: 0;
}
@mixin fake-input-field($border-radius:0){
width: 20px;
height: 20px;
border: 1px solid $color-gray-600;
display: block;
pointer-events: none;
border-radius: $border-radius;
}