studyplan.module.scss 602 Bytes
Newer Older
Choi Ga Young's avatar
Choi Ga Young committed
1
.list {
Choi Ga Young's avatar
Choi Ga Young committed
2
  height: 75vh;
Choi Ga Young's avatar
Choi Ga Young committed
3
4
5
  overflow-y: auto;
}

Choi Ga Young's avatar
Choi Ga Young committed
6
7
8
9
.inCard {
  overflow: scroll;
}

Choi Ga Young's avatar
Choi Ga Young committed
10
11
12
13
.checkBox {
  border-color: black;

  &:focus {
Kim, Subin's avatar
Kim, Subin committed
14
    border-color: black;
Choi Ga Young's avatar
Choi Ga Young committed
15
16
17
  }

  &:checked {
Kim, Subin's avatar
Kim, Subin committed
18
19
20
    border-color: crimson;
    background-color: crimson;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='currentColor' d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
Choi Ga Young's avatar
Choi Ga Young committed
21
22
  }
}
Kim, Subin's avatar
Kim, Subin committed
23
24
25
26
27
28

.text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}