summaryrefslogtreecommitdiff
path: root/client/simple/src/less/animations.less
blob: 94923441c081fd22c2fa0c81aad3dc559421de9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// SPDX-License-Identifier: AGPL-3.0-or-later

.dialog-modal {
  animation-name: dialogmodal;
  animation-duration: 0.13s;

  @keyframes dialogmodal {
    0% {
      opacity: 0;
    }

    50% {
      opacity: 0.5;
      transform: translate(-50%, -50%) scale(1.05);
    }
  }
}

input.checkbox-onoff[type="checkbox"]::before {
  transition: left 0.25s;
}