.dungeon/styles/sheets/actor/sync/basic.scss
2023-12-21 23:59:38 -07:00

49 lines
No EOL
647 B
SCSS

@use "../../../mixins/breakpoints" as *;
.dotdungeon {
.actor--circle-sync {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 4px;
label {
display: flex;
flex-direction: column;
align-items: center;
}
.sync-input {
width: 30%;
text-align: center;
}
.name-input {
width: 60%;
text-align: center;
}
}
&--sync-sheet {
header {
.configure-token {
display: none;
visibility: hidden;
}
}
}
}
@include bp-xs {
.dotdungeon {
&--sync-sheet {
header {
.configure-sheet {
display: none;
visibility: hidden;
}
}
}
}
}