File size: 823 Bytes
75fefa7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* Fix for inside-border utility */
.inside-border {
  position: relative;
}

.inside-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid;
  border-color: inherit;
  transition: all 0.2s;
  pointer-events: none;
}

.inside-border-x {
  position: relative;
}

.inside-border-x::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-left: 1px solid;
  border-right: 1px solid;
  border-color: inherit;
  transition: all 0.2s;
  pointer-events: none;
}

.inside-border-y {
  position: relative;
}

.inside-border-y::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: inherit;
  transition: all 0.2s;
  pointer-events: none;
}