1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| /*!
| * text-align v1.0.0 (https://doc.firstui.cn)
| * Copyright 2024 FirstUI.
| * Licensed under the Apache license
| */
|
| .fs-align__left{
| text-align: left;
| }
|
| .fs-align__center{
| text-align: center;
| }
|
| .fs-align__right{
| text-align: right;
| }
|
| /* #ifndef APP-NVUE */
| .fs-align__justify{
| text-align: justify;
| }
|
| .fs-align__start{
| text-align: start;
| }
|
| .fs-align__end{
| text-align: end;
| }
| /* #endif */
|
|