Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
-
- .chart-card {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-around; /* 或者使用 space-between 根据您的喜好 */
- text-align: center;
- }
-
-
- .chart-text {
- margin: 0;
- font-size: 1.02rem;
- color: rgb(126 221 243 / 100%);
-
- }
-
-
- .chart-button {
- width: 12rem;
- height: 3rem;
- margin: 5px;
- font-size: 1.75rem;
- line-height: 1.02rem;
- color: rgb(255 0 0 / 100%);
- text-align: center;
- background-color: rgb(6 70 120 / 0%);
- background-image: url('/assets/dashboardButtonBg.png');
- background-repeat: no-repeat;
- background-position: center;
- background-size: contain; /* 或者可以使用 'contain' 根据你的需要 */
- border-width: 0;
- }
-
-
-
- .chart-container {
- width: 12rem;
- height: 12rem;
- }
-
-
|