How do I align search and cart with the menu in the dawn theme?

Hi @Rimagaradah

Please add this code at bottom of your base.css file

@media (max-width: 767px) {
header-drawer { 
    display: none !important; 
}
.header--mobile-left .header__heading, .header--mobile-left .header__heading-link {
    justify-self: end !important;
    margin-right: -6px !important;
}
.header__inline-menu {
    margin-left: -268px;
    display: flex !important;
}
.header__icons {
    grid-area: navigation !important;
    margin-left: -228px !important;
}
.header__icons .header__search {
    display: none !important;
}
}