feat: harden phase one workflows
This commit is contained in:
@@ -1,31 +1,87 @@
|
||||
page {
|
||||
background: #f4f6f8;
|
||||
color: #17212b;
|
||||
background: #f3f6f8;
|
||||
color: #16212f;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
|
||||
font-size: 28rpx;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
view,
|
||||
text,
|
||||
input,
|
||||
textarea,
|
||||
button {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.page {
|
||||
min-height: 100vh;
|
||||
padding: 24rpx;
|
||||
padding: 28rpx 24rpx 48rpx;
|
||||
}
|
||||
|
||||
.section {
|
||||
.page-heading {
|
||||
margin-bottom: 24rpx;
|
||||
}
|
||||
|
||||
.heading-eyebrow {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
height: 40rpx;
|
||||
padding: 0 14rpx;
|
||||
color: #0f766e;
|
||||
background: #e6f4f1;
|
||||
border-radius: 999rpx;
|
||||
font-size: 22rpx;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.heading-title {
|
||||
margin-top: 10rpx;
|
||||
color: #111827;
|
||||
font-size: 40rpx;
|
||||
font-weight: 800;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.heading-subtitle {
|
||||
margin-top: 8rpx;
|
||||
color: #64748b;
|
||||
font-size: 24rpx;
|
||||
}
|
||||
|
||||
.section {
|
||||
margin-bottom: 28rpx;
|
||||
}
|
||||
|
||||
.section-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 16rpx;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
margin: 0 0 16rpx;
|
||||
font-size: 32rpx;
|
||||
font-weight: 700;
|
||||
margin: 0;
|
||||
color: #111827;
|
||||
font-size: 34rpx;
|
||||
font-weight: 800;
|
||||
line-height: 1.25;
|
||||
}
|
||||
|
||||
.card {
|
||||
background: #ffffff;
|
||||
border: 1rpx solid #e5e9ef;
|
||||
border-radius: 8rpx;
|
||||
padding: 20rpx;
|
||||
border: 1rpx solid #e4eaf0;
|
||||
border-radius: 16rpx;
|
||||
padding: 24rpx;
|
||||
margin-bottom: 16rpx;
|
||||
box-shadow: 0 8rpx 24rpx rgba(20, 36, 58, 0.05);
|
||||
}
|
||||
|
||||
.card-title {
|
||||
color: #111827;
|
||||
font-size: 30rpx;
|
||||
font-weight: 700;
|
||||
line-height: 1.35;
|
||||
}
|
||||
|
||||
.row {
|
||||
@@ -38,6 +94,12 @@ page {
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.stack {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10rpx;
|
||||
}
|
||||
|
||||
.muted {
|
||||
color: #64748b;
|
||||
font-size: 24rpx;
|
||||
@@ -49,12 +111,29 @@ page {
|
||||
}
|
||||
|
||||
.tag {
|
||||
display: inline-block;
|
||||
padding: 4rpx 12rpx;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 36rpx;
|
||||
padding: 4rpx 14rpx;
|
||||
background: #e6f4f1;
|
||||
color: #0f766e;
|
||||
border-radius: 6rpx;
|
||||
border-radius: 999rpx;
|
||||
font-size: 22rpx;
|
||||
font-weight: 700;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.pill {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
height: 44rpx;
|
||||
padding: 0 16rpx;
|
||||
color: #33536f;
|
||||
background: #edf4f8;
|
||||
border-radius: 999rpx;
|
||||
font-size: 22rpx;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.grid {
|
||||
@@ -72,7 +151,7 @@ page {
|
||||
justify-content: center;
|
||||
background: #ffffff;
|
||||
border: 1rpx solid #e5e9ef;
|
||||
border-radius: 8rpx;
|
||||
border-radius: 16rpx;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
@@ -80,17 +159,41 @@ page {
|
||||
.textarea,
|
||||
.picker {
|
||||
width: 100%;
|
||||
min-height: 76rpx;
|
||||
padding: 0 18rpx;
|
||||
min-height: 84rpx;
|
||||
padding: 0 22rpx;
|
||||
background: #ffffff;
|
||||
border: 1rpx solid #d9e0e8;
|
||||
border-radius: 6rpx;
|
||||
margin-bottom: 16rpx;
|
||||
border: 1rpx solid #d9e2ea;
|
||||
border-radius: 14rpx;
|
||||
margin-bottom: 20rpx;
|
||||
color: #17212b;
|
||||
font-size: 28rpx;
|
||||
}
|
||||
|
||||
.picker {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
color: #334155;
|
||||
}
|
||||
|
||||
.textarea {
|
||||
min-height: 140rpx;
|
||||
padding-top: 16rpx;
|
||||
padding-top: 18rpx;
|
||||
}
|
||||
|
||||
.field-label {
|
||||
display: block;
|
||||
margin: 6rpx 0 12rpx;
|
||||
color: #334155;
|
||||
font-size: 24rpx;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.form-card {
|
||||
background: #ffffff;
|
||||
border: 1rpx solid #e4eaf0;
|
||||
border-radius: 16rpx;
|
||||
padding: 24rpx;
|
||||
box-shadow: 0 8rpx 24rpx rgba(20, 36, 58, 0.05);
|
||||
}
|
||||
|
||||
.button-row {
|
||||
@@ -99,12 +202,19 @@ page {
|
||||
}
|
||||
|
||||
button {
|
||||
border-radius: 6rpx;
|
||||
border-radius: 14rpx;
|
||||
font-size: 28rpx;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
button::after {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.primary {
|
||||
background: #0f766e;
|
||||
color: #ffffff;
|
||||
border: 1rpx solid #0f766e;
|
||||
}
|
||||
|
||||
.ghost {
|
||||
@@ -112,3 +222,38 @@ button {
|
||||
color: #0f766e;
|
||||
border: 1rpx solid #0f766e;
|
||||
}
|
||||
|
||||
.action-button {
|
||||
min-height: 88rpx;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.empty-state {
|
||||
display: flex;
|
||||
min-height: 180rpx;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: #64748b;
|
||||
background: #ffffff;
|
||||
border: 1rpx dashed #cbd5e1;
|
||||
border-radius: 16rpx;
|
||||
font-size: 26rpx;
|
||||
}
|
||||
|
||||
.media-placeholder {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: #0f766e;
|
||||
background: #e6f4f1;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.divider {
|
||||
height: 1rpx;
|
||||
margin: 20rpx 0;
|
||||
background: #edf1f5;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user