plebdevs/src/components/navbar/navbar.module.css

43 lines
735 B
CSS
Raw Normal View History

.titleContainer {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
padding-left: 6%;
padding-right: 6%;
cursor: pointer;
}
.logo {
border-radius: 50%;
margin-right: 8px;
height: 50px;
width: 50px;
}
.title {
color: ghostwhite;
font-size: 1.5rem;
font-weight: 600;
2024-09-13 13:24:17 -05:00
}
.dropdown {
border: none !important;
outline: none !important;
box-shadow: none !important;
}
.dropdown:focus,
.dropdown:active,
.dropdown:hover {
border: none !important;
outline: none !important;
box-shadow: none !important;
}
/* Override any potential global styles */
.dropdown * {
outline: none !important;
box-shadow: none !important;
}