Skip to content
This repository was archived by the owner on Jan 11, 2020. It is now read-only.

Card content goes out of card fixes #370 #373

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
5 changes: 3 additions & 2 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ html,body
}

.participant-card {
max-height: 325px;
min-height: 325px;
/* max-height: 100%; */
min-height: 400px;
width: 100% !important;
min-width: 180px;
box-shadow: 0 3px 6px 0 rgba(0,0,0,0.12);
Expand Down Expand Up @@ -509,6 +509,7 @@ input:checked + .slider:before {
.card-college{
font-size:14px;
font-weight: 600;
vertical-align: baseline;
}

.card-name{
Expand Down
2 changes: 1 addition & 1 deletion js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ $(document).ready(function() {
"<h4 class='card-title card-name'>" +
participant.name +
"</h4>" +
"<p class='card-text card-college'>" +
"<p class='card-text card-college' style='height: 100% !important'>" +
participant.college +
"</p>" +
"</div>"+
Expand Down