mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-02 12:05:54 +00:00
54 lines
944 B
CSS
54 lines
944 B
CSS
.emptyPageContainer {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: #FFF;
|
|
border: 1px solid #c5c5c5;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
.emptyContainer {
|
|
width: 100%;
|
|
height: 50%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
.emptyCreateButton {
|
|
width: 200px;
|
|
height: 50px;
|
|
border-radius: 20px;
|
|
background-color: #6062E7;
|
|
color: #FFF;
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
line-height: 50px;
|
|
user-select: none;
|
|
}
|
|
|
|
.emptyCreateButton:hover {
|
|
background-color: #4b4de3;
|
|
}
|
|
|
|
.emptyInfoContainer {
|
|
width: 100%;
|
|
height: 60px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
color: #353535;
|
|
}
|
|
|
|
.emptyInfoText {
|
|
font-size: 30px;
|
|
}
|
|
|
|
.emptyInfoSubText {
|
|
font-size: 28px;
|
|
} |