Skip to content

Commit

Permalink
Merge pull request #177 from contao-themes-net/fix-slider-height
Browse files Browse the repository at this point in the history
Fix slider height
  • Loading branch information
MDevster authored Feb 26, 2024
2 parents 15a667d + 4782811 commit 61f6db5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ Types of changes
Security in case of vulnerabilities.
)

## [2.21.1](https://github.com/contao-themes-net/mate-theme-bundle/tree/2.21.1) – 2023-12-04

- [Fixed] Fix slider height

## [2.21.0](https://github.com/contao-themes-net/mate-theme-bundle/tree/2.21.0) – 2023-09-11

- [Added] Add teaserbox card element
Expand Down
2 changes: 1 addition & 1 deletion src/Module/MateThemeSetup.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class MateThemeSetup extends BackendModule
{
const VERSION = '2.21.0';
const VERSION = '2.21.1';

protected $strTemplate = 'be_mateTheme_setup';

Expand Down
10 changes: 7 additions & 3 deletions src/Resources/public/sass/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1912,9 +1912,13 @@ nav .brand-logo {
display: none;
}

.slides li img {
height: 350px;
vertical-align: bottom;
.slides li {
height: 100%;

img {
height: 350px;
vertical-align: bottom;
}
}

p {
Expand Down

0 comments on commit 61f6db5

Please sign in to comment.