diff --git a/_sass/_global.scss b/_sass/_global.scss index 4fb2b6f..a900171 100644 --- a/_sass/_global.scss +++ b/_sass/_global.scss @@ -442,6 +442,18 @@ input:checked { animation: tooltips-vert 300ms ease-out forwards; } +.notification { + position: relative; + opacity: 0; + animation: notification 0.5s forwards ease-in; + animation-delay: 0.1s; +} + +@keyframes notification { + 100% { + opacity: 1; + } +} // This is a hacky way to solve this problem. // I could not find away in tailwind to set a max of cols and to allow diff --git a/assets/img/icons/info.svg b/assets/img/icons/info.svg new file mode 100644 index 0000000..57f545a --- /dev/null +++ b/assets/img/icons/info.svg @@ -0,0 +1,7 @@ + \ No newline at end of file diff --git a/portmaster/index.html b/portmaster/index.html index ece64ff..24eb781 100644 --- a/portmaster/index.html +++ b/portmaster/index.html @@ -6,6 +6,12 @@ redirect_from: - /download/ --- +