6e51cb7d16
- Updated comments in various components, schemas, and repositories to remove references to original Dart files. - Ensured consistency in documentation while maintaining the context of the code.
20 lines
335 B
CSS
20 lines
335 B
CSS
/**
|
||
* 间距 token
|
||
*
|
||
*/
|
||
@theme {
|
||
--spacing-xs: 4px;
|
||
--spacing-sm: 8px;
|
||
--spacing-md: 12px;
|
||
--spacing-lg: 16px;
|
||
--spacing-xl: 20px;
|
||
--spacing-xxl: 24px;
|
||
--spacing-xxxl: 32px;
|
||
|
||
/* 扩展间距(迁移自 Flutter widgets) */
|
||
--spacing-26: 26px;
|
||
--spacing-30: 30px;
|
||
--spacing-40: 40px;
|
||
--spacing-46: 46px;
|
||
}
|