mirror of
https://github.com/BanjoRecomp/BanjoRecomp
synced 2026-06-10 20:28:22 -04:00
35 lines
644 B
SCSS
35 lines
644 B
SCSS
@use 'sass:math';
|
|
|
|
// Probably will need to adjust for other langs...
|
|
$mapping-min-width: 80 * 8;
|
|
$visual-max-width: $base-modal-max-width - $mapping-min-width - $scrollbar-width;
|
|
|
|
.input-config {
|
|
padding: 0;
|
|
}
|
|
|
|
.input-config__horizontal-split {
|
|
display: flex;
|
|
position: relative;
|
|
flex-direction: row;
|
|
height: 100%;
|
|
}
|
|
|
|
.input-config__mappings {
|
|
display: block;
|
|
flex: 1 1 auto;
|
|
min-width: space($mapping-min-width);
|
|
height: 100%;
|
|
}
|
|
|
|
.input-config__mappings-scroll {
|
|
display: block;
|
|
width: 100%;
|
|
max-height: 100%;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.input-config__mappings-wrapper {
|
|
padding: space(8);
|
|
}
|