mirror of
https://github.com/projectstorm/react-diagrams.git
synced 2025-08-18 19:20:42 +08:00
38 lines
615 B
SCSS
38 lines
615 B
SCSS
@import "../src/sass";
|
|
|
|
.storm-diagrams-canvas{
|
|
height: 400px;
|
|
background-color: rgb(60,60,60);
|
|
$color: rgba(white, .05);
|
|
background-image:
|
|
linear-gradient(0deg,
|
|
transparent 24%,
|
|
$color 25%,
|
|
$color 26%,
|
|
transparent 27%,
|
|
transparent 74%,
|
|
$color 75%,
|
|
$color 76%,
|
|
transparent 77%,
|
|
transparent),
|
|
linear-gradient(90deg,
|
|
transparent 24%,
|
|
$color 25%,
|
|
$color 26%,
|
|
transparent 27%,
|
|
transparent 74%,
|
|
$color 75%,
|
|
$color 76%,
|
|
transparent 77%,
|
|
transparent);
|
|
background-size:50px 50px;
|
|
|
|
path{
|
|
stroke: rgba(white,0.5);
|
|
}
|
|
|
|
.pointui{
|
|
fill: rgba(white,0.5);
|
|
}
|
|
}
|