Merge branch 'master' of github.com:goteguru/Fantasy-Map-Generator

This commit is contained in:
Mészáros Gergely 2021-08-12 00:49:40 +02:00
commit 07ff6d030f
28 changed files with 2705 additions and 1754 deletions

View file

@ -997,12 +997,6 @@ body button.noicon {
stroke-width: 0.4;
}
#controlCells > .occupied {
fill: #ff828240;
stroke: #ff8282;
stroke-width: 0.4;
}
#vertices > circle {
fill: #ff0000;
stroke: #841f1f;
@ -1285,17 +1279,26 @@ div.slider .ui-slider-handle {
display: none !important;
}
.burgs-table {
max-height: 75vh;
overflow-x: hidden;
overflow-y: scroll;
}
.table {
max-height: 75vh;
max-width: 75vw;
overflow-x: hidden;
overflow-y: auto;
scrollbar-width: thin;
}
.table::-webkit-scrollbar {
width: 6px;
background-color: transparent;
}
.table::-webkit-scrollbar-thumb {
background-color: #aaa;
border-radius: 6px;
}
.table::-webkit-scrollbar-thumb:hover {
background: #666;
}
.overflow {