31 lines
479 B
CSS
31 lines
479 B
CSS
/* Migration page specific styles */
|
|
|
|
.store-mapping {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto 1fr;
|
|
gap: 15px;
|
|
align-items: center;
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.store-select {
|
|
padding: 12px;
|
|
border: 2px solid #ddd;
|
|
border-radius: 6px;
|
|
font-size: 1em;
|
|
width: 100%;
|
|
background: white;
|
|
}
|
|
|
|
.store-select:focus {
|
|
outline: none;
|
|
border-color: #667eea;
|
|
}
|
|
|
|
.arrow {
|
|
font-size: 1.5em;
|
|
color: #667eea;
|
|
text-align: center;
|
|
}
|
|
|