You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- /* Core Grid CSS */
- @import 'ag-grid-community/styles/ag-grid.css';
- @import 'ag-grid-community/styles/ag-theme-quartz.css';
-
- .custom-label {
- display: inline-block;
- padding: 10px 20px; /* 内边距 */
- font-size: 16px; /* 字体大小 */
- color: white; /* 文字颜色 */
- background-color: rgb(0 0 0 / 50%); /* 半透明黑色背景 */
- border-radius: 10px 10px 0 0; /* 上方圆角 */
- }
-
- .my-grid-font {
- font-size: 16px;
- font-weight: bold;
- }
-
|