Additions: - added TODOs - added armor item list to char sheet - proper overflow handling in tabs (now: scrollable) Changes: - proper localization of item values - "Description" not abbreviated anymore - cleaned up getData() of ActorSheet (data now truly const)
18 lines
287 B
SCSS
18 lines
287 B
SCSS
.window-content {
|
|
overflow-y: hidden;
|
|
padding: 5px;
|
|
|
|
form {
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.tab {
|
|
height: 100%;
|
|
overflow-y: scroll;
|
|
align-content: flex-start;
|
|
ol {
|
|
overflow-y: visible;
|
|
}
|
|
}
|
|
}
|