13 lines
200 B
CSS
13 lines
200 B
CSS
.center {
|
|
display: flex;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
justify-content: center;
|
|
align-items: center;
|
|
position: relative;
|
|
padding: 4rem 0;
|
|
}
|
|
|
|
.search:hover {
|
|
background-color: #303134;
|
|
} |