1234567891011121314151617181920212223242526272829303132 |
- .plg-quality {
- @p-30: 30px;
- @mb: 5px;
- width: 100%;
- height: 50%;
- // background-color: red;
- margin-bottom: 0;
- margin-bottom: @mb;
- &:first-child {
- height: calc(50% - @mb);
- }
- &:last-child {
- margin-bottom: @mb;
- }
- .plg-elem-quote {
- height: @p-30;
- line-height: @p-30;
- padding-top: 0;
- padding-bottom: 0;
- padding-left: 10px;
- margin-bottom: 0;
- }
- .layui-card-body {
- width: 100%;
- height: calc(100% - 30px);
- overflow: hidden;
- }
- }
|