Before Width: | Height: | Size: 678 KiB After Width: | Height: | Size: 2.3 MiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 6.5 KiB |
After Width: | Height: | Size: 195 B |
After Width: | Height: | Size: 12 KiB |
@ -0,0 +1,22 @@
|
|||||||
|
/* w-[136px] h-[136px] rounded-[9px] bg-[#fff] :before:content-[''] :before:bg-[#fff] */
|
||||||
|
.qrcodeContainer {
|
||||||
|
position: relative;
|
||||||
|
width: 130px;
|
||||||
|
height: 130px;
|
||||||
|
margin-top: 14px;
|
||||||
|
border-radius: 9px;
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.qrcodeContainer:before {
|
||||||
|
position: absolute;
|
||||||
|
top: -6px;
|
||||||
|
left: 62px;
|
||||||
|
content: '';
|
||||||
|
display: block;
|
||||||
|
width: 0;
|
||||||
|
height: 0;
|
||||||
|
border-left: 6px solid transparent;
|
||||||
|
border-right: 6px solid transparent;
|
||||||
|
border-bottom: 6px solid #fff;
|
||||||
|
}
|