72 lines
1.3 KiB
SCSS
72 lines
1.3 KiB
SCSS
.BoardComponent {
|
|
.octo-board {
|
|
flex: 0 1 auto;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.octo-board-header {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
min-height: 30px;
|
|
margin-bottom: 10px;
|
|
padding: 0px 10px;
|
|
color: #909090;
|
|
}
|
|
|
|
.octo-board-header-cell{
|
|
display: flex;
|
|
flex-shrink: 0;
|
|
align-items: center;
|
|
|
|
width: 260px;
|
|
margin-right: 15px;
|
|
vertical-align: middle;
|
|
|
|
&.narrow {
|
|
width: 220px;
|
|
}
|
|
|
|
> div {
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.IconButton{
|
|
background-color: unset;
|
|
&:hover {
|
|
background-color: rgba(var(--main-fg), 0.1);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.octo-board-body {
|
|
display: flex;
|
|
flex-direction: row;
|
|
padding: 0 10px;
|
|
flex: 0 1 auto;
|
|
}
|
|
|
|
.octo-board-column {
|
|
flex: 0 0 auto;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
width: 260px;
|
|
margin-right: 15px;
|
|
&.narrow {
|
|
width: 220px;
|
|
}
|
|
}
|
|
|
|
.octo-board-hidden-item {
|
|
display: flex;
|
|
flex-direction: row;
|
|
> div {
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
}
|