new styles

This commit is contained in:
2024-10-23 15:43:57 +05:00
parent aec986cd01
commit c0cbf73bb0
20 changed files with 1755 additions and 3 deletions

6
assets/js/main.js Normal file
View File

@@ -0,0 +1,6 @@
function showMore() {
var hiddenText = document.getElementById('hiddenText');
var showMoreBtn = document.getElementById('showMoreBtn');
hiddenText.style.display = 'block';
showMoreBtn.style.display = 'none';
}