dioxus-tea 0.1.10

Dioxus - The Elm Architecture (TEA) Model
Documentation
/* App-wide styling */
body {
    /* use the color of black tea for the background color. */
    background-color: #4b2f2f; /* Dark brown */
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 20px;
}

#title {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.heading {
    font-size: 24px;
}

.tea-options {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    column-gap: 8px;
    margin-top: 16px;
}