14 lines
174 B
CSS
14 lines
174 B
CSS
|
|
.error {
|
||
|
|
position: absolute;
|
||
|
|
top: 50%;
|
||
|
|
left: 50%;
|
||
|
|
transform: translate(-50%, -50%);
|
||
|
|
margin: auto;
|
||
|
|
display: flex;
|
||
|
|
z-index: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.icon {
|
||
|
|
margin-right: 10px;
|
||
|
|
}
|