You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
661 B
39 lines
661 B
.connected-sites-list {
|
|
&__content-rows {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
&__content-row {
|
|
display: flex;
|
|
width: 100%;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
border-top: 1px solid #d2d8dd;
|
|
padding: 16px 24px;
|
|
}
|
|
|
|
&__subject-info {
|
|
@include H7;
|
|
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
min-width: 0;
|
|
}
|
|
|
|
&__subject-name {
|
|
max-width: 215px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
direction: rtl;
|
|
text-overflow: ellipsis;
|
|
margin-left: 6px;
|
|
}
|
|
|
|
&__trash {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|