diff --git a/core/lib/Drupal/Core/Updater/Theme.php b/core/lib/Drupal/Core/Updater/Theme.php
index 48f68c7..72328c0 100644
--- a/core/lib/Drupal/Core/Updater/Theme.php
+++ b/core/lib/Drupal/Core/Updater/Theme.php
@@ -87,7 +87,7 @@ public function postInstall() {
    * {@inheritdoc}
    */
   public function postInstallTasks() {
-    // Since this is being called outsite of the primary front controller,
+    // Since this is being called outside of the primary front controller,
     // the base_url needs to be set explicitly to ensure that links are
     // relative to the site root.
     // @todo Simplify with https://www.drupal.org/node/2548095
@@ -99,9 +99,22 @@ public function postInstallTasks() {
       ],
     ];
     return [
+      $url = Url::fromRoute('system.themes_page'),
+      $link_options = array(
+        'attributes' => array(
+          'class' => array(
+          'button',
+          ),
+        ),
+      );
+      $url->setOptions($link_options);
       $default_options + [
-        '#url' => Url::fromRoute('system.themes_page'),
-        '#title' => t('Install newly added themes'),
+        '#url' => $url,
+        '#title' => t('Enable theme'),
+      ],
+      $default_options + [
+        '#url' => Url::fromRoute('update.theme_install'),
+        '#title' => t('Install another theme'),
       ],
       $default_options + [
         '#url' => Url::fromRoute('system.admin'),
