Skip to content

Commit

Permalink
adjusting the dots for adjusting elements.
Browse files Browse the repository at this point in the history
  • Loading branch information
NtemKenyor committed May 5, 2023
1 parent 39cdc6a commit 5393f5e
Show file tree
Hide file tree
Showing 5 changed files with 510 additions and 51 deletions.
1 change: 1 addition & 0 deletions assets/css/dashboard.css
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ html {
max-width: 60%;
display: inline-block;
text-align: left;
overflow: scroll;
/* margin-left: 25%; */
}

Expand Down
4 changes: 2 additions & 2 deletions assets/vendor/js/access_library.js
Original file line number Diff line number Diff line change
Expand Up @@ -1067,7 +1067,7 @@ var $ = function(selector, category){
return specs;
}

specs.style = function (css_code){
specs.style = function (css_code, insertion_Area='head'){

//check if style already exist...
//alert(specs.selector);
Expand All @@ -1076,7 +1076,7 @@ var $ = function(selector, category){
if (styler_area == null || styler_area == "" || styler_area == undefined){
var style = document.createElement('style');
style.innerHTML = css_code;
var ref = document.querySelector('head');
var ref = document.querySelector(insertion_Area);
ref.appendChild(style, ref);
return specs;
}else{
Expand Down
Loading

0 comments on commit 5393f5e

Please sign in to comment.