mirror of
https://github.com/yldio/copilot.git
synced 2024-11-14 23:30:05 +02:00
12 lines
187 B
CSS
12 lines
187 B
CSS
.verticle_align_center {
|
|
/* Need to palce position:relative on parent */
|
|
left: 50%;
|
|
position: absolute;
|
|
top: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
.clear {
|
|
clear: both;
|
|
}
|