mirror of https://github.com/vector-im/riot-web
Move the required CSS for DevicesPanel into its own scss file
Signed-off-by: Andy Balaam <andyb@element.io>pull/21833/head
parent
bc336abf47
commit
4e9a20db21
|
@ -17,7 +17,10 @@ limitations under the License.
|
||||||
.mx_DevicesPanel {
|
.mx_DevicesPanel {
|
||||||
display: table;
|
display: table;
|
||||||
table-layout: fixed;
|
table-layout: fixed;
|
||||||
width: 880px;
|
// Normally the panel is 880px, however this can easily overflow the container.
|
||||||
|
// TODO: Fix the table to not be squishy
|
||||||
|
width: auto;
|
||||||
|
max-width: 880px;
|
||||||
border-spacing: 10px;
|
border-spacing: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -14,13 +14,6 @@ See the License for the specific language governing permissions and
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.mx_SecurityUserSettingsTab .mx_DevicesPanel {
|
|
||||||
// Normally the panel is 880px, however this can easily overflow the container.
|
|
||||||
// TODO: Fix the table to not be squishy
|
|
||||||
width: auto;
|
|
||||||
max-width: 880px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mx_SecurityUserSettingsTab_deviceInfo {
|
.mx_SecurityUserSettingsTab_deviceInfo {
|
||||||
display: table;
|
display: table;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
|
|
Loading…
Reference in New Issue