contao / website

Issue tracker for contao.org
2 stars 0 forks source link

Graphic error #152

Open mariannedecker opened 5 days ago

mariannedecker commented 5 days ago

I was on contao.org with my cell phone and I noticed 2 graphical errors:

  1. on the page https://contao.org/de/servicebeschreibung the table under “Services” is cut off on a narrow viewport approx. smaller than 440px. A kind of horizontal scrolling within the table is missing here. contao-servicebeschreibung

  2. When displaying the team boxes on https://contao.org/de/team, the name and company details are sometimes missing or run out of the box: With a viewport between 300 and 991px, if there is only 1 team box in a line (Sascha Müller's box). With a viewport of approx. 580 and 991px, if there are 2 boxes in one line (Markus/Stefan and Bjarke/Fritz) contao-team

zoglo commented 5 days ago

1:

.ce_table {
    overflow-x: auto;
}

2:

.photo-box-container .box .inner {
    padding: 0 0 15px;
    min-height: 370px;
}

.box .inner {
    min-height: 315px;
}

However, I do think this should be solved by using aspect ratio and a width instead of limiting it to the height