summaryrefslogtreecommitdiff
path: root/client/src/components/BackButton/BackButton.module.css
blob: cc9b51ca4f924821eedd608097489518e185c98e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
.submit {
  position: absolute;
  top: 100px;
  left: 150px;
  background: transparent;
  border: none;
  border-radius: 50%;
  transition: 0.2s all;
  cursor: pointer;
}

.submit:active {
  transform: scale(0.98);
  box-shadow: 3px 2px 22px 1px var(--color-shadow);
}

.submit__image {
  height: 75px;
  width: 75px;
}