prevent image overflowing on small displays
This commit is contained in:
parent
3b1a13fff2
commit
7680fe03f7
2 changed files with 9 additions and 1 deletions
|
@ -8,4 +8,4 @@ Currently studying computer science at [hongik university](https://wwwce.hongik.
|
|||
|
||||
## Skills
|
||||
|
||||
<img alt="programming skills" src="/img/skills.svg" style="display: block; margin-left: auto; margin-right: auto; max-width: 100%;" />
|
||||
<img alt="programming skills" src="/img/skills.svg" />
|
||||
|
|
|
@ -7,6 +7,14 @@ export const mainContentCSS = css`
|
|||
margin-top: 1rem;
|
||||
width: 50%;
|
||||
|
||||
img {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
table img {
|
||||
max-width: fit-content;
|
||||
}
|
||||
|
||||
@media screen and (max-width: ${theming.size.screen_size1}) {
|
||||
width: auto;
|
||||
margin: 1rem;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue