Coding Global Background
Coding Global

Can anyone tell me why this looks so squished together?

Archived 3 years ago
4 messages
1 members
Created 3 years ago
Updated 3 years ago
Open in Discord
T
Toa
Hi, i just want to center my div.container but this looks very wrong

<style>
    .white-text {
        color: #fff !important;
    }

    #mainPage {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .leaderboard {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: justify;
    }

    .card-panel {
        border-radius: 15px 50px 15px 30px;
    }
</style>

<div class="container" id="mainPage">
    <div class="leaderboard">
        <span class="white-text">
            <div style="margin-top: 30px;" class="row">
                <div class="col s6">
                    <div class="card-panel green">
                        <i class="material-icons large right">attach_money</i>
                        <h3>Meistes Geld</h3><br>
                        <div id="lead-money">
                        </div>
                    </div>
                </div>
            </div>
        </span>
    </div>
</div>
Can anyone tell me why this looks so squished together?

Replies (4)