dependency-graph-construction
Version:
A powerful tool to construct dependency graphs for JavaScript and TypeScript projects. Useful for project structure analysis and debugging.
21 lines (18 loc) • 327 B
CSS
.zoom-controls {
position: fixed;
bottom: 10px;
right: 10px;
display: flex;
gap: 10px;
}
.zoom-controls button {
padding: 10px;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.zoom-controls button:hover {
background-color: #0056b3;
}