Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5405 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 5405 Rev 5406
Línea 1... Línea 1...
1
@use "./mixins.scss";
1
@use "./mixins.scss";
Línea 2... Línea 2...
2
 
2
 
3
.suggests-widget {
3
.suggests-widget {
4
    @include mixins.widget;
-
 
5
    padding: 1rem .5rem;
4
    @include mixins.widget;
Línea 6... Línea 5...
6
    display: block;
5
    display: block;
7
 
6
 
8
    .header {
7
    &>.header {
9
        align-items: center;
8
        align-items: center;
10
        display: flex;
9
        display: flex;
11
        justify-content: space-between;
10
        justify-content: space-between;
Línea 24... Línea 23...
24
            font-size: 1rem;
23
            font-size: 1rem;
25
            cursor: pointer;
24
            cursor: pointer;
26
        }
25
        }
27
    }
26
    }
Línea 28... Línea 27...
28
 
27
 
29
    .suggest-list {
28
    &>.suggest-list {
30
        max-height: 400px;
29
        max-height: 400px;
31
        overflow: auto;
30
        overflow: auto;
32
        width: 100%;
31
        width: 100%;
33
        display: flex;
32
        display: flex;
Línea 43... Línea 42...
43
            &::-webkit-scrollbar-thumb {
42
            &::-webkit-scrollbar-thumb {
44
                visibility: visible;
43
                visibility: visible;
45
            }
44
            }
46
        }
45
        }
47
    }
46
    }
-
 
47
}
-
 
48
 
-
 
49
.user {
-
 
50
    align-items: center;
-
 
51
    border-right: 1px solid $border-primary;
-
 
52
    display: flex;
-
 
53
    padding: 1rem;
-
 
54
    gap: 0.5rem;
-
 
55
 
-
 
56
    img {
-
 
57
        border-radius: 50%;
-
 
58
        max-width: 3.3rem;
-
 
59
        background: #fff;
-
 
60
    }
-
 
61
 
-
 
62
    div.d-flex {
-
 
63
        gap: 0.5rem;
-
 
64
    }
-
 
65
 
-
 
66
    a.btn,
-
 
67
    button.btn {
-
 
68
        padding: 0.2rem 0.6rem;
-
 
69
        white-space: nowrap;
-
 
70
    }
-
 
71
 
-
 
72
    h4 {
-
 
73
        font-weight: 500;
-
 
74
        line-height: 1.4;
-
 
75
    }
-
 
76
 
-
 
77
    @include mixins.for-size(phone) {
-
 
78
        &:last-child {
-
 
79
            border-right: none;
-
 
80
        }
-
 
81
    }
-
 
82
 
-
 
83
    @include mixins.for-size(tablet-portrait) {
-
 
84
        border-right: none;
-
 
85
        border-top: 1px solid $border-primary;
-
 
86
        min-width: auto;
-
 
87
    }
48
}
88
}
49
89