Skip to content
Snippets Groups Projects
_reviews-sidebar.scss 1.27 KiB
Newer Older
  • Learn to ignore specific revisions
  • .reviews-sidebar {
        $root: &;
        margin-bottom: 20px;
        font-weight: $weight--bold;
    
        tbody {
            tr {
    
                @include media-query(tablet-portrait) {
                    border-bottom: 0;
                }
    
    
                > th {
                    font-size: inherit;
                    font-weight: $weight--bold;
                }
    
                > td {
                    display: table-cell;
                    height: auto;
                }
    
                th,
                td,
                td:last-child,
                td:first-child {
                    padding: 10px;
                }
    
    
                position: relative;
                z-index: 1;
                display: block;
                overflow: hidden;
    
                text-overflow: ellipsis;
    
    
        &__no-reviews {
            color: $color--mid-grey;
        }