43 lines
805 B
SCSS
43 lines
805 B
SCSS
// <!-- #region message search styles -->
|
|
// <style lang="scss" scoped>
|
|
.search-main {
|
|
display: flex;
|
|
flex-direction: row-reverse;
|
|
// position: absolute;
|
|
z-index: 999;
|
|
// top: 24px;
|
|
background-color: #fff;
|
|
width: 100%;
|
|
justify-content: center;
|
|
// background-color: red;
|
|
.button-search {
|
|
position: relative;
|
|
width: 35px;
|
|
height: 31px;
|
|
margin-right: 5px;
|
|
margin-left: 5px;
|
|
margin-top: 2px;
|
|
border: none;
|
|
background-color: #fff;
|
|
|
|
&:hover {
|
|
border-radius: 5px;
|
|
border: 1px solid #a0acb8;
|
|
background-color: #a0acb8;
|
|
color: #fff;
|
|
}
|
|
span {
|
|
position: absolute;
|
|
top: 3px;
|
|
right: 0px;
|
|
}
|
|
}
|
|
}
|
|
// </style>
|
|
// <style>
|
|
.tavasi-Component-198--1 {
|
|
transform: scale(1.2);
|
|
}
|
|
// </style>
|
|
// <!-- #endregion -->
|