aboutsummaryrefslogtreecommitdiff
path: root/src/components/chat/chat.scss
blob: 8af710ae1fda97819b06f212f70e55f56aa90e8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
.chat-view {
  display: flex;
  height: 100%;

  .chat-view-inner {
    height: auto;
    width: 100%;
    overflow: visible;
    display: flex;
  }

  .chat-view-body {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: visible;
    min-height: calc(100vh - var(--navbar-height));
    margin: 0;
    border-radius: var(--roundness);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    &::after {
      border-radius: 0;
    }
  }

  .message-list {
    padding: 0 0.8em;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
  }

  .footer {
    position: sticky;
    bottom: 0;
    z-index: 1;
  }

  .chat-view-heading {
    grid-template-columns: auto minmax(50%, 1fr);
  }

  .go-back-button {
    text-align: center;
    line-height: 1;
    height: 100%;
    align-self: start;
    width: var(--__panel-heading-height-inner);
  }

  .jump-to-bottom-button {
    width: 2.5em;
    height: 2.5em;
    border-radius: 100%;
    position: absolute;
    right: 1.3em;
    top: -3.2em;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 1px 1px rgb(0 0 0 / 30%), 0 2px 4px rgb(0 0 0 / 30%);
    z-index: 10;
    transition: 0.35s all;
    transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
    opacity: 0;
    visibility: hidden;
    cursor: pointer;

    &.visible {
      opacity: 1;
      visibility: visible;
    }

    .unread-message-count {
      font-size: 0.8em;
      left: 50%;
      margin-top: -1rem;
      padding: 0.1em;
      border-radius: 50px;
      position: absolute;
    }

    .chat-loading-error {
      width: 100%;
      display: flex;
      align-items: flex-end;
      height: 100%;

      .error {
        width: 100%;
      }
    }
  }
}