38 lines
496 B
Plaintext
38 lines
496 B
Plaintext
.workbench-hero {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20rpx;
|
|
padding: 32rpx;
|
|
}
|
|
|
|
.workbench-hero__title {
|
|
font-size: 40rpx;
|
|
font-weight: 700;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.entry-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 24rpx;
|
|
}
|
|
|
|
.todo-panel {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 24rpx;
|
|
padding: 32rpx;
|
|
}
|
|
|
|
.todo-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20rpx;
|
|
}
|
|
|
|
.todo-item {
|
|
font-size: 24rpx;
|
|
line-height: 1.7;
|
|
color: #475569;
|
|
}
|