show_modal.less 1.04 KB
@charset "UTF-8";

.show-modal {
	.layer-box {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 150;
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		background-color: rgba(0, 0, 0, 0.4);
		width: 100%;
		height: 100%;
		.box {
			background-color: #F8F8FA;
			width: 540px;
			border-radius: 10px;
			.title {
				
			}
			.content {
				padding: 60px 0 50px 0;
				text-align: center;
				color: #000000;
				font-size: 30px;
				font-weight: 500;
				line-height: 42px;
				letter-spacing: 1px;
			}
			.buttons-box {
				display: flex;
				justify-content: space-evenly;
				.btn {
					display: flex;
					justify-content: center;
					align-items: center;
					height: 104px;
					border-top: 1px solid #EBEBEB;
					& + .btn {
						border-left: 1px solid #EBEBEB;
					}
					&.btn-okay {
						flex: 1;
						color: #6B7698;
						font-size: 30px;
						letter-spacing: 1px;
					}
					&.btn-cancel {
						flex: 1;
						color: #000000;
						font-size: 30px;
						letter-spacing: 1px;
					}
				}
			}
		}
	}
}