refactor(style.css): update to disable user selection

This commit is contained in:
tekh 2025-08-08 12:59:40 +02:00
parent 4f5d034e53
commit 5b45bdfa6b

View File

@ -2,6 +2,13 @@
@import '../node_modules/@angular/cdk/overlay-prebuilt.css';
@import "../node_modules/bootstrap-icons/font/bootstrap-icons.css";
* {
-webkit-user-select: none; /* Safari */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Standart */
}
a {
color: #0366d6;
}