Newer
Older
anicusi / scss / components / search-bar.scss
@Eugene Eugene on 11 Apr 422 bytes init
.component.search-bar {
	.search-field-container {
		display: grid;
		align-items: center;
		position: relative;
		padding: 0;
		margin: 0;
		
		.search-field {

		}

		.submit {
			display: block;
			position: absolute;
			top: auto;
			right: 0;
			width: 34px;
			height: 30px;
			background: transparent;
			border: 0;
			color: $color-primary;
			font-size: 20px;
			text-align: center;
			line-height: 30px;
		}
	}
}