Add the Aspect sheet and update some translation keys for the actor sheet
This commit is contained in:
parent
c0d677cd77
commit
763a0982d5
22 changed files with 1277 additions and 84 deletions
|
|
@ -1,16 +1,10 @@
|
|||
@mixin bp-m {
|
||||
@container (max-width: 700px) {
|
||||
@container (max-width: 620px) {
|
||||
@content
|
||||
};
|
||||
};
|
||||
|
||||
@mixin bp-s {
|
||||
@container (max-width: 550px) {
|
||||
@content
|
||||
};
|
||||
};
|
||||
|
||||
@mixin bp-xs {
|
||||
@container (max-width: 400px) {
|
||||
@content
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
@mixin fvtt_reset {
|
||||
all: initial;
|
||||
display: block;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
12
styles/mixins/_partials.scss
Normal file
12
styles/mixins/_partials.scss
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
@mixin input-generic {
|
||||
border-width: 2px;
|
||||
border-radius: 4px;
|
||||
border-style: solid;
|
||||
border-color: rgba(0,0,0, 0.4);
|
||||
background-color: rgba(0,0,0, 0.1);
|
||||
|
||||
&:focus,
|
||||
&:active {
|
||||
border-color: rgba(0,0,0, 1);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue