textual icon indicating copy to clipboard operation
textual copied to clipboard

Align center middle not working correctly with scrollbars

Open darrenburns opened this issue 2 years ago • 0 comments

With the CSS below on the uber.py example, the content gets pushed behind the scrollbar. There is an unexpected space on the left hand side.

#uber1 {
  layout: vertical;

  background: dark_green;
  overflow: hidden auto;
  border: heavy white;
}

.list-item {
  height: 8;
  align: center middle;
  background: dark_blue;
}
image

darrenburns avatar Apr 26 '22 13:04 darrenburns