32 lines
385 B
CSS
32 lines
385 B
CSS
::ng-deep * {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.body-content {
|
|
max-width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.comment-div {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
::ng-deep .body-content * {
|
|
white-space: normal;
|
|
word-break: break-word;
|
|
width: 100%;
|
|
}
|
|
|
|
img {
|
|
height: 100%
|
|
}
|
|
|
|
.main-content {
|
|
margin: auto;
|
|
width: 45%;
|
|
}
|