Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/firstrunwizard.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2022-08-12 14:18:04 +0300
committerGitHub <noreply@github.com>2022-08-12 14:18:04 +0300
commit3d780b99f45b653993ef9bfb2bb058698727156f (patch)
tree799941c3ff8171b94953728f26a373c364a45d9f
parent98cd92e53620831203d6a91382f4b8eea3324fa4 (diff)
parent7f5b05ad5cab595d2c1a471369bd66a277a6e7ee (diff)
Merge pull request #725 from nextcloud/port/scssv25.0.0beta1
-rw-r--r--css/personalsettings.css32
-rw-r--r--css/personalsettings.scss24
2 files changed, 32 insertions, 24 deletions
diff --git a/css/personalsettings.css b/css/personalsettings.css
new file mode 100644
index 00000000..c47fe0dd
--- /dev/null
+++ b/css/personalsettings.css
@@ -0,0 +1,32 @@
+/*
+ * SPDX-FileCopyrightText: 2022 Carl Schwan <carl@carlschwan.eu>
+ * SPDX-License-Identifer: AGPL-3.0-or-later
+ */
+
+.clientslinks {
+ display: flex;
+ gap: 1rem;
+ flex-wrap: wrap;
+ margin-top: 20px;
+ margin-bottom: 20px;
+}
+
+.clientslinks a.button {
+ display: inline-block;
+ padding: 0.7rem 1rem;
+}
+
+.clientslinks .button .appsmall {
+ vertical-align: sub;
+ margin-right: 0.2rem;
+}
+
+.clipboardButton {
+ display: inline-block;
+ padding-left: 36px;
+ background-position: 12px;
+}
+
+#endpoint-url {
+ width: 250px;
+}
diff --git a/css/personalsettings.scss b/css/personalsettings.scss
deleted file mode 100644
index 02ab2fe1..00000000
--- a/css/personalsettings.scss
+++ /dev/null
@@ -1,24 +0,0 @@
-.clientslinks {
- margin-top: 20px;
- margin-bottom: 20px;
-
- .button {
- display: inline-block;
- padding: 0.7rem 1rem;
-
- .appsmall {
- vertical-align: sub;
- margin-right: 0.2rem;
- }
- }
-}
-
-.clipboardButton {
- display: inline-block;
- padding-left: 36px;
- background-position: 12px;
-}
-
-#endpoint-url {
- width: 250px;
-}