15 lines
244 B
CSS
15 lines
244 B
CSS
/*
|
||
* SaaSShop Admin Components
|
||
* 说明:用于承接 Blade 中零散的 inline style,便于后续统一美化与治理。
|
||
*/
|
||
|
||
.form-inline-row{
|
||
display:flex;
|
||
align-items:center;
|
||
gap:8px;
|
||
}
|
||
|
||
.text-danger{
|
||
color:#b42318;
|
||
}
|