forked from Abdulbari/sgeUpdated
Fix DataCenter emission calculation: VM-level processing, authentication fixes, and type safety improvements
This commit is contained in:
BIN
src/assets/images/background_dot.png
Normal file
BIN
src/assets/images/background_dot.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.6 KiB |
8
src/assets/scss/Datepicker.scss
Normal file
8
src/assets/scss/Datepicker.scss
Normal file
@@ -0,0 +1,8 @@
|
||||
.datePicker {
|
||||
height: 38px;
|
||||
}
|
||||
|
||||
.react-datepicker__input-container input {
|
||||
height: 38px;
|
||||
width: 100%;
|
||||
}
|
||||
10
src/assets/scss/_map.scss
Normal file
10
src/assets/scss/_map.scss
Normal file
@@ -0,0 +1,10 @@
|
||||
#map * {
|
||||
-moz-transition: none !important;
|
||||
-webkit-transition: none !important;
|
||||
-o-transition: all 0s ease !important;
|
||||
transition: none !important;
|
||||
}
|
||||
|
||||
.google-map * {
|
||||
transition: none !important;
|
||||
}
|
||||
35
src/assets/scss/pages/communication.scss
Normal file
35
src/assets/scss/pages/communication.scss
Normal file
@@ -0,0 +1,35 @@
|
||||
// Communication page styles
|
||||
|
||||
.responsive-map-container {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
padding-top: 70%; /* 4:3 Aspect Ratio - taller than 16:9 */
|
||||
height: 0;
|
||||
|
||||
iframe {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border: 0;
|
||||
}
|
||||
}
|
||||
|
||||
// Responsive adjustments
|
||||
@media (max-width: 768px) {
|
||||
.address-map {
|
||||
margin-top: 1.5rem;
|
||||
}
|
||||
|
||||
.responsive-map-container {
|
||||
padding-top: 75%; /* Taller aspect ratio for mobile */
|
||||
}
|
||||
}
|
||||
|
||||
// Extra small devices
|
||||
@media (max-width: 576px) {
|
||||
.responsive-map-container {
|
||||
padding-top: 100%; /* Square aspect ratio for very small screens */
|
||||
}
|
||||
}
|
||||
5
src/assets/scss/style-rtl.scss
Normal file
5
src/assets/scss/style-rtl.scss
Normal file
@@ -0,0 +1,5 @@
|
||||
/*
|
||||
NOTE:
|
||||
------
|
||||
PLACE HERE YOUR OWN SCSS CODES AND IF NEEDED, OVERRIDE THE STYLES FROM THE OTHER STYLESHEETS.
|
||||
WE WILL RELEASE FUTURE UPDATES SO IN ORDER TO NOT OVERWRITE YOUR STYLES IT'S BETTER LIKE THIS. */
|
||||
5
src/assets/scss/style.scss
Normal file
5
src/assets/scss/style.scss
Normal file
@@ -0,0 +1,5 @@
|
||||
/*
|
||||
NOTE:
|
||||
------
|
||||
PLACE HERE YOUR OWN SCSS CODES AND IF NEEDED, OVERRIDE THE STYLES FROM THE OTHER STYLESHEETS.
|
||||
WE WILL RELEASE FUTURE UPDATES SO IN ORDER TO NOT OVERWRITE YOUR STYLES IT'S BETTER LIKE THIS. */
|
||||
3
src/assets/scss/variables/_variables-components.scss
Normal file
3
src/assets/scss/variables/_variables-components.scss
Normal file
@@ -0,0 +1,3 @@
|
||||
// ================================================================================================
|
||||
// ? TIP: It is recommended to use this file for overriding component variables.
|
||||
// ================================================================================================
|
||||
3
src/assets/scss/variables/_variables.scss
Normal file
3
src/assets/scss/variables/_variables.scss
Normal file
@@ -0,0 +1,3 @@
|
||||
// ================================================================================================
|
||||
// ? TIP: It is recommended to use this file for overriding bootstrap variables.
|
||||
// ================================================================================================
|
||||
Reference in New Issue
Block a user