Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
khanzadimahdi committed May 19, 2024
1 parent 6d020c5 commit 5fa8495
Show file tree
Hide file tree
Showing 4 changed files with 4,673 additions and 3,091 deletions.
55 changes: 37 additions & 18 deletions frontend/assets/scss/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -550,25 +550,44 @@ ol.list-featured li:before {

// Article
article {
p, pre, figure, img, blockquote, iframed, embed {
margin-bottom:2rem;
}
blockquote {
padding-left:40px;
margin-left:0px;
font-style:italic;
position:relative;
}
blockquote:before {
content: "";
font-family: Georgia;
font-size: 8rem;
margin: -1rem 2rem 0 -3.9rem;
position: absolute;
opacity: 1;
float: left;
line-height: 1;
line-height: 2rem;

p, pre, figure, img, blockquote, iframed, embed {
margin-bottom: 1rem;
}

blockquote {
padding-left:40px;
margin-left:0px;
font-style:italic;
position:relative;
}

blockquote:before {
content: "";
font-family: Georgia;
font-size: 8rem;
margin: -1rem 2rem 0 -3.9rem;
position: absolute;
opacity: 1;
float: left;
line-height: 1;
}

.image {
text-align: center;

figcaption {
background-color: #f7f7f7;
caption-side: bottom;
color: #333;
display: block;
font-size: .75em;
outline-offset: -1px;
padding: .6em;
word-break: break-word;
}
}
}

[dir="rtl"] article {
Expand Down
5 changes: 3 additions & 2 deletions frontend/components/card/medium.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<template>
<div class="mb-3 d-flex flex-column flex-md-row justify-content-md-between card border-0 rounded-2 overflow-hidden">
<div class="card-header col-md-5 col-lg-4 col-xl-3 bg-transparent p-0 border-0 overflow-hidden rounded-0">
<figure class=" w-100 h-100">
<img class="w-100 h-100" :src="resolveFileUrl(cover)" :alt="title">
<figure>
<img class="h-100" :src="resolveFileUrl(cover)" :alt="title">
</figure>
</div>
<div class=" card-body px-1 px-md-3 py-2 py-md-1 col-md-6 col-lg-7 col-xl-8 ">
Expand Down Expand Up @@ -38,6 +38,7 @@
figure img {
transition: 0.3s;
object-fit: cover;
}
figure img:hover {
Expand Down
Loading

0 comments on commit 5fa8495

Please sign in to comment.