mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-13 13:50:38 +00:00
20 lines
387 B
CSS
20 lines
387 B
CSS
.main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 6rem;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.chip {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
border-radius: 1px;
|
|
color: #000;
|
|
font-size: 12px;
|
|
font-family: monospace;
|
|
text-transform: uppercase;
|
|
font-weight: 500;
|
|
}
|