Skip to content

Commit

Permalink
Merge pull request #11 from ramoncordini/ajustes-pos-lancamento
Browse files Browse the repository at this point in the history
Fix: Correção gerais de layout pos lancamento
  • Loading branch information
ramoncordini authored Dec 12, 2024
2 parents da3eb12 + 8fa0117 commit 5bc991f
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 9 deletions.
2 changes: 1 addition & 1 deletion css/bootstrap.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/bootstrap.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion versions/1.0.0/dist/css/bootstrap.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion versions/1.0.0/dist/css/bootstrap.css.map

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion versions/1.0.0/src/common/scss/_components/_logo.scss
Original file line number Diff line number Diff line change
Expand Up @@ -226,11 +226,12 @@ Logo SciELO
color: $__text--light;
font-style: italic;
border-bottom: 1px solid $__border--light;
padding-bottom: 2px;
padding-bottom: 10px;
padding-left: 24px;
padding-right: 0;
top: 40px;
left: __remcalc(130px);
line-height: 1rem;

@include media-breakpoint-up(sm) {
font-size: __remcalc(30px);
Expand All @@ -239,6 +240,7 @@ Logo SciELO
padding-right: 5px;
top: 80px;
left: __remcalc(150px);
line-height: normal;
}

//outline: 1px solid red;
Expand Down Expand Up @@ -305,3 +307,6 @@ Logo SciELO

}

.#{$__classPrefix}__logo-periodico{
max-height: 100px;
}
24 changes: 20 additions & 4 deletions versions/1.0.0/src/common/scss/_objects/_font-fixes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -262,11 +262,27 @@ html {
@include __material-icons;
}

.blockquote {
.blockquote,
blockquote {
margin: 0 0 1rem;
padding: 0.6rem 1.33333rem 0 1.26667rem;
border-left: 1px solid $__bg__gray--2;
font-size: 1rem;
padding: 0.8rem 1.4rem;
border-left: 4px solid $border-color;
background-color: $__bg__gray--2;
font-style: italic;

&::before{
content: "\201C"; /* Código ASCII para abrir aspas */
font-family: $__font__family--brand;
font-size: 2rem; /* Ajuste de estilo opcional */
line-height: 2rem;
}

&::after {
content: "\201D"; /* Código ASCII para fechar aspas */
font-family: $__font__family--brand;
font-size: 2rem; /* Ajuste de estilo opcional */
line-height: 2rem;
}

@include __on-theme--dark {
border-left-color: $__bg__white--2;
Expand Down

0 comments on commit 5bc991f

Please sign in to comment.