shlink-web-client/src/short-urls/helpers/ShortUrlsRow.scss

53 lines
924 B
SCSS
Raw Normal View History

@import '../../utils/base';
@import '../../utils/mixins/vertical-align';
2018-08-05 09:49:07 +03:00
.short-urls-row {
@media (max-width: $smMax) {
display: block;
margin-bottom: 10px;
border-bottom: 1px solid $lightGrey;
position: relative;
2018-08-05 09:49:07 +03:00
}
}
.short-urls-row__cell.short-urls-row__cell {
vertical-align: middle !important;
2018-08-05 09:49:07 +03:00
@media (max-width: $smMax) {
display: block;
width: 100%;
position: relative;
padding: .5rem;
font-size: .9rem;
&:before {
content: attr(data-th);
font-weight: bold;
}
&:last-child {
position: absolute;
top: 3px;
right: .5rem;
width: auto;
padding: 0;
2018-08-05 09:49:07 +03:00
}
}
}
2018-08-04 18:52:56 +03:00
.short-urls-row__cell--break {
word-break: break-all;
}
.short-urls-row__cell--relative {
position: relative;
}
.short-urls-row__copy-hint {
@include vertical-align();
2018-08-01 20:04:58 +03:00
right: 100%;
@media (max-width: $smMax) {
right: calc(100% + 10px);
}
}