Newer
Older
open-logistic-tycoon / game / resources / scss / main-menu.scss
#ui {
	.main-menu {
		display: flex;
		flex-direction: column;
    justify-content: center;
    height: 100vh;
    align-items: center;
    gap: 80px;

    .game-title {
    	.version {
    		font-size: .8em;
    		color: $txt-blur-color;
    	}
    }
		    
		.menu-list {
			ul {
				list-style-type: none;
				padding: 0;
				display: flex;
				flex-direction: column;
				align-items: center;
				gap: 10px;

				li {
					width: 100%;
				}
			}
		}
	}

}