summaryrefslogtreecommitdiff
path: root/WebInterface/NodeJSServer/src/style/partials/game/_chat.scss
blob: 89b63b333e4f3b245cfdbb01b50b1b634642f155 (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
@import '../colors';
@import '../btn';

.chat {
  flex-grow: 1;
  display: flex;
  flex-direction: column;

  .messages {
    flex-grow: 1;
    background-color: white;
    margin: 0.5rem;
  }

  .input-message {
    display: flex;
    margin: 0.5rem;

    input {
      font-size: 2rem;
      flex-grow: 1;
    }

    .btn {
      margin-left: 1rem;
    }
  }
}