excalidraw/src/components/ProjectName.css
Jed Fox 668f8ec4a6
Make dialogs look better on mobile (#908)
* Standardize mobile media query

* Refactor & add mobile support to dialogs

* back & close icons
2020-03-13 20:32:47 +01:00

20 lines
338 B
CSS

.ProjectName {
display: inline-block;
cursor: pointer;
border: 1.5px solid #eee;
height: 2.5rem;
line-height: 2.5rem;
padding: 0 0.5rem;
white-space: nowrap;
border-radius: var(--space-factor);
}
.ProjectName:hover {
background-color: #eee;
}
.ProjectName:focus {
outline: none;
box-shadow: 0 0 0 2px steelblue;
}