mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-28 12:26:35 +08:00
9 lines
370 B
TypeScript
9 lines
370 B
TypeScript
// border
|
|
export const BORDER = 'van-hairline';
|
|
export const BORDER_TOP = `${BORDER}--top`;
|
|
export const BORDER_LEFT = `${BORDER}--left`;
|
|
export const BORDER_BOTTOM = `${BORDER}--bottom`;
|
|
export const BORDER_SURROUND = `${BORDER}--surround`;
|
|
export const BORDER_TOP_BOTTOM = `${BORDER}--top-bottom`;
|
|
export const BORDER_UNSET_TOP_BOTTOM = `${BORDER}-unset--top-bottom`;
|