focalboard/webapp/src/components/shareBoardComponent.scss
2021-01-22 23:44:04 +05:00

30 lines
No EOL
534 B
SCSS

.ShareBoardComponent {
display: flex;
flex-direction: column;
padding: 5px;
color: rgb(var(--body-color));
max-width: 400px;
> .row {
display: flex;
flex-direction: row;
align-items: center;
margin-bottom: 10px;
}
> .row:last-child {
margin-bottom: 0;
}
.spacer {
flex-grow: 1;
}
a.shareUrl {
flex-grow: 1;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
margin-right: 5px;
}
}