Skip to content

Commit

Permalink
Merge pull request #3378 from kolchfa-aws/image-style
Browse files Browse the repository at this point in the history
Add border styling and padding to blog images
  • Loading branch information
nateynateynate authored Oct 14, 2024
2 parents 0df54a6 + ef8dde1 commit 831804f
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions _sass/_opensearch.scss
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,11 @@
.img-fluid {
max-width: 100%;
height: auto;
border: 1px solid $line-lighter;
}
.img-centered {
max-width: 100%;
margin: 0 auto;
display: block;
border: 1px solid $line-lighter;
}
.downloads-page {
.layout-2col {
Expand Down Expand Up @@ -506,7 +504,14 @@
}

.page--blog-post {

#content-main {
img {
padding: 10px;
border: 1px solid $line-lighter;
border-radius: 4px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), 0 3px 10px rgba(0, 0, 0, 0.08);
}
}

.highlight pre, .highlight code {
border: none;
Expand Down

0 comments on commit 831804f

Please sign in to comment.