Socialify

Folder ..

Viewing main.scss
70 lines (63 loc) • 1.1 KB

 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
@import "fonts.scss";

body {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
}

.topNavigationBar {
  padding: 5px 10px;
  user-select: none;
  -webkit-app-region: drag;
  background: #ffffff;
}

.titlebar {
  text-align: center;
  font-size: 12px;
  margin: 0px 0px 20px 0px;
  color: black;
  font-weight: 400;
}

.actionButtons {
  .btn {
    background: transparent;
    width: 32px;
    height: 32px;
    border: none;
    outline: none;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.two_pane {
  display: grid;
  grid-template-columns: 240px auto;
  padding: 10px;
}

.sidebar {
  user-select: none;
  .sidebarTitle {
    color: rgb(61, 61, 61);
    font-weight: 700;
    font-size: 12px;
  }
  ul {
    list-style: none;
    margin: 0;
    padding: 0px;
    cursor: default;
    .selected {
      color: #3f84e5;
    }
    li {
      font-size: 14px;
      cursor: default;
      padding: 10px;
      i {
        margin-right: 8px;
        font-size: 16px;
      }
    }
  }
}

@import "icons.scss";