|
- .experiment-result {
- height: calc(100% - 10px);
- margin-top: 10px;
- padding: 20px @content-padding;
- overflow-y: auto;
- background-color: white;
- border-radius: 10px;
-
- &__download {
- padding-top: 16px;
- padding-bottom: 16px;
-
- padding-left: @content-padding;
- color: @text-color;
- font-size: 13px;
- background-color: #f8f8f9;
- border-radius: 4px;
-
- &__btn {
- display: block;
- height: 36px;
- margin-top: 15px;
- font-size: 14px;
- }
- }
-
- &__text {
- white-space: pre-wrap;
- }
-
- &__images {
- display: flex;
- align-items: flex-start;
- width: 100%;
- overflow-x: auto;
-
- :global {
- .ant-image {
- margin-right: 20px;
-
- &:last-child {
- margin-right: 0;
- }
- }
- }
-
- &__item {
- height: 248px;
- border: 1px solid rgba(96, 107, 122, 0.3);
- }
- }
- }
|