excalidraw/src/components/ProjectName.css

20 lines
338 B
CSS
Raw Normal View History

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