|
@@ -1,3 +1,9 @@
|
|
|
+.rotate(@degrees) {
|
|
|
+ -webkit-transform: rotate(@degrees);
|
|
|
+ -ms-transform: rotate(@degrees);
|
|
|
+ -o-transform: rotate(@degrees);
|
|
|
+ transform: rotate(@degrees);
|
|
|
+}
|
|
|
.report-container {
|
|
|
width: 595px;
|
|
|
margin: auto;
|
|
@@ -38,6 +44,19 @@
|
|
|
.ant-table-wrapper {
|
|
|
margin-bottom: 12px;
|
|
|
}
|
|
|
+ &:before {
|
|
|
+ content: '';
|
|
|
+ position: absolute;
|
|
|
+ top: 40%;
|
|
|
+ left: 34%;
|
|
|
+ width: 200px;
|
|
|
+ height: 100px;
|
|
|
+ opacity: 0.2;
|
|
|
+ .rotate(330deg);
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-size: contain;
|
|
|
+ background-image: url(../../../../../image/logo-2.png);
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.report-info {
|