addressCreateBar.less 1.43 KB
@charset "UTF-8";

@width_bar: 100%;
@height_bar: 140px;
@font_size_btn: 34px;
@border_radius_btn: 100px;
@background_color_bright: #FF725C;
@color_btn_bright: #fff;
@box_shadow_btn: 0 4px 12px #F8ADA2;
@width_btn_bright: 546px;
@height_btn_bright: 90px;
@width_btn_bright_img: 38px;
@height_btn_bright_img: 38px;
@padding_left_btn_bright_text: 37px;

.address-create-bar {
	.box {
		position: fixed;
		bottom: 0;
		z-index: 100;
		background-color: transparent;
		width: @width_bar;
		height: @height_bar;
		@supports (padding-bottom: env(safe-area-inset-bottom)) {
			& {
				padding-bottom: env(safe-area-inset-bottom);
			}
		}
		.buttons {
			.btn {
				font-size: @font_size_btn;
				border-radius: @border_radius_btn;
				&.btn-bright {
					display: flex;
					flex-direction: row;
					justify-content: center;
					align-items: center;
					background-color: @background_color_bright;
					color: @color_btn_bright;
					width: @width_btn_bright;
					height: @height_btn_bright;
					box-shadow: @box_shadow_btn;
					margin: 0 auto;
					.img {
						width: @width_btn_bright_img;
						height: @height_btn_bright_img;
					}
					.img + .text {
						padding-left: @padding_left_btn_bright_text;
					}
				}
			}
		}
	}
	.placeholder-box {
		// background-color: #ffffff;
		background-color: transparent;
		padding-top: 30px;
		border-top: 1px solid transparent;
		border-bottom: 1px solid transparent;
		width: @width_bar;
		height: @height_bar;
	}
}