focalboard/webapp/src/components/shareBoardComponent.scss

30 lines
534 B
SCSS
Raw Normal View History

2021-01-13 19:37:17 +01:00
.ShareBoardComponent {
display: flex;
flex-direction: column;
2021-01-13 20:01:33 +01:00
padding: 5px;
2021-01-22 13:24:08 +01:00
color: rgb(var(--body-color));
max-width: 400px;
2021-01-13 19:37:17 +01:00
> .row {
display: flex;
flex-direction: row;
2021-01-13 20:01:33 +01:00
align-items: center;
margin-bottom: 10px;
}
> .row:last-child {
margin-bottom: 0;
2021-01-13 19:37:17 +01:00
}
.spacer {
flex-grow: 1;
}
2021-01-13 20:01:33 +01:00
a.shareUrl {
2021-01-13 20:01:33 +01:00
flex-grow: 1;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
2021-01-13 20:01:33 +01:00
margin-right: 5px;
}
2021-01-13 19:37:17 +01:00
}