style(css): 移动上下文样式到全局CSS文件

This commit is contained in:
lonewolfyx 2026-02-07 13:57:49 +08:00
parent d84e20e561
commit 37c9ee3e0a
2 changed files with 15 additions and 14 deletions

View File

@ -48,18 +48,4 @@ const handleDetail = (raw) => {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.context {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 10px;
font-size: 12px;
line-height: 20px;
.label {
display: flex;
gap: 6px;
font-size: 12px;
line-height: 20px;
}
}
</style> </style>

View File

@ -5149,3 +5149,18 @@ scroll-view.cu-steps .cu-item {
.card-odd { .card-odd {
border-left: 4px solid #19be6b !important; border-left: 4px solid #19be6b !important;
} }
.context {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 10px;
font-size: 12px;
line-height: 20px;
.label {
display: flex;
gap: 6px;
font-size: 12px;
line-height: 20px;
}
}