-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInitialize.css
More file actions
68 lines (60 loc) · 1.41 KB
/
Initialize.css
File metadata and controls
68 lines (60 loc) · 1.41 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*===----------------------------------------------------------------------===//
*
* This source file is part of the AWS Lambda Swift
* VSCode extension open source project.
*
* Copyright (c) 2024, the VSCode AWS Lambda Swift extension project authors.
* Licensed under Apache License v2.0.
*
* See LICENSE.txt for license information
* See CONTRIBUTORS.txt for the list of VSCode AWS Lambda Swift project authors
*
* SPDX-License-Identifier: Apache-2.0
*
*===----------------------------------------------------------------------===//
*/
.loading-ring-container, .loading-ring {
height: 100%;
}
.markdown-container {
display: flex;
flex-direction: column;
max-height: 100%;
gap: 0.5rem;
grid-column-start: 1;
grid-column-end: 4;
}
.markdown-container p:first-child {
margin: 0;
}
.markdown {
padding: 1rem;
background-color: var(--dropdown-background);
max-height: 250px;
overflow-y: auto;
}
.visual-representation-container {
display: flex;
flex-direction: column;
max-height: 100%;
grid-column-start: 1;
grid-column-end: 4;
gap: 0.5rem;
}
.visual-representation-container p {
margin: 0;
}
.visual-representation {
display: flex;
justify-content: center;
align-items: center;
max-width: 100%;
max-height: 400px;
padding: 1rem;
background-color: var(--dropdown-background);
}
.visual-representation img {
width: auto;
max-height: 100%;
object-fit: contain;
}