﻿@import "./CarShop.scss";

PaintshopUi {
    color: white;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    
    .colors {
        width: 100%;
        height: 800px;
        flex-wrap: wrap;
    }

    .color-button {
        flex-shrink: 0;
        width: 25%;
        height: 10%;
        cursor: pointer;
        // text-shadow: none;
        color: white;
        align-content: center;
        justify-content: center;
        align-items: center;
        font-size: 60px;

        border: 3px solid transparent;

        &:hover {
            sound-in: "sounds/menu/button-hover.sound";
            border-color: black;
        }

        &:active {
            sound-in: "sounds/menu/button-click.sound";
        }
    }
}