Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ddd65b0e authored by Daniel J. Ramirez's avatar Daniel J. Ramirez
Browse files

Added a better no results page,

Added basic page for privacy related content (i need to see what is going here so i can make a proper layout)
parent fd91d945
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -22,3 +22,4 @@ yarn-error.log

.vscode
.idea
dump.rdb
+18 −1
Original line number Diff line number Diff line
@@ -63,10 +63,20 @@ a {
#search_bar_area {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#search_bar_area #search_form {
#search_bar_area #search_form,
#no_results_msg,
.content-small-centered {
  max-width: 600px;
  margin: auto;
}
#no_results_msg {
  text-align: center;
  margin-top: 64px;
  margin-bottom: 64px;
}
#no_results_msg img {
  max-width: 70%;
}
.inline {
  display: flex;
  flex-direction: row;
@@ -306,6 +316,13 @@ fieldset {
  border: none;
  padding: 0px;
}
pre {
  font-family: 'Courier New', Courier, monospace;
  background: rgba(0, 0, 0, 0.1);
  padding: 8px 16px;
  border-radius: 8px;
  white-space: pre-wrap;
}
footer {
  position: absolute;
  bottom: 0;
+0 −0

File changed.

Preview suppressed by a .gitattributes entry or the file's encoding is unsupported.

+0 −0

File added.

Preview suppressed by a .gitattributes entry or the file's encoding is unsupported.

+8 −0
Original line number Diff line number Diff line
@@ -46,6 +46,14 @@ fieldset {
  padding: 0px;
}

pre {
  font-family: 'Courier New', Courier, monospace;
  background: @dim-color-lighter;
  padding: @spacing_medium @spacing_large;
  border-radius: @corner-radius;
  white-space: pre-wrap;
}



footer {
Loading